@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.artists-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.artists-carousel::-webkit-scrollbar {
    display: none;
}

.artists-carousel .artist-card-featured {
    min-width: calc(33.333% - 22px);
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-green);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29,185,84,0.3);
}

.carousel-btn:hover {
    background: #169146;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(29,185,84,0.4);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

@media (max-width: 1200px) {
    .artists-carousel .artist-card-featured {
        min-width: calc(50% - 16px);
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .artists-carousel .artist-card-featured {
        min-width: calc(100% - 40px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.dashboard-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card.highlight {
    border: 2px solid var(--accent-green);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.card-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.dashboard-section {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.section-header-dash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.section-header-dash h2 {
    font-size: 1.5rem;
    margin: 0;
}

.section-header-dash a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.quotes-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quote-item-compact:hover {
    background: #e8e8e8;
}

.quote-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-info strong {
    font-size: 1rem;
}

.quote-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.quote-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.stock-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stock-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stock-warning {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}

.no-data {
    text-align: center;
    color: var(--text-gray);
    padding: 32px;
}

.admin-quick-actions {
    margin-top: 48px;
}

.admin-quick-actions h2 {
    margin-bottom: 24px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.action-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.action-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.admin-filters {
    margin-bottom: 32px;
}

.filter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-form input[type="text"] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
}

.filter-form select {
    padding: 12px 20px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    min-width: 200px;
}

.categories-management {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.add-category-form {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.add-category-form h2 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.categories-list h2 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.category-item-admin {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.category-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 100px 3fr;
    gap: 12px;
    align-items: center;
}

.category-fields input,
.category-fields select,
.category-fields textarea {
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.95rem;
}

.category-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.equipment-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-sections {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-management {
        grid-template-columns: 1fr;
    }

    .category-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

.admin-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-header h1 {
    font-size: 2rem;
    color: var(--text-dark);
}

.admin-table {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--accent-green);
    color: white;
}

.admin-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
}

.admin-table tbody tr:hover {
    background: #fafafa;
}

.table-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.inline-form {
    display: inline-block;
    margin: 0 4px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    background: var(--accent-green);
    color: white;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29,185,84,0.3);
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
    box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

.btn-toggle {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-toggle:hover {
    background: var(--bg-light);
    border-color: var(--accent-green);
}

.admin-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.admin-nav {
    margin-top: 40px;
}

.admin-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.admin-nav a:hover {
    color: var(--accent-green);
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.booking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 8px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0;
}

.filter-tabs a {
    padding: 12px 24px;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.filter-tabs a.active {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

.filter-tabs a:hover {
    color: var(--accent-green);
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.booking-artist {
    display: flex;
    align-items: center;
    gap: 16px;
}

.artist-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.booking-artist h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.booking-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.badge-confirmed {
    background: #d4edda;
    color: #155724;
}

.badge-rejected {
    background: #f8d7da;
    color: #721c24;
}

.badge-cancelled {
    background: #d6d8db;
    color: #383d41;
}

.booking-details p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.booking-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.booking-actions select {
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.booking-notes {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.booking-notes label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.booking-notes textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    resize: vertical;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.booking-detail-section {
    padding: 60px 0;
}

.back-link {
    display: inline-block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-green);
}

.booking-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.booking-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 32px;
}

.artist-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.artist-photo-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.artist-genre {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.badge-large {
    padding: 12px 24px;
    font-size: 1rem;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.detail-value a {
    color: var(--accent-green);
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.booking-message,
.admin-notes {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    line-height: 1.8;
}

.booking-actions-footer {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
}

.auth-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.auth-box h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.btn-full {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
}

.auth-link {
    text-align: center;
    margin-top: 24px;
    color: var(--text-gray);
}

.auth-link a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

.artists-list-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.artists-filters {
    margin-bottom: 48px;
}

.search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
}

.genre-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: white;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.artist-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.artist-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.artist-card-content {
    padding: 24px;
}

.artist-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.artist-card-content .artist-genre {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.artist-card-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.artist-card-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 968px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-stats {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #F7F7F7;
    --bg-white: #FFFFFF;
    --accent-green: #1DB954;
    --text-dark: #222222;
    --text-gray: #666666;
    --border-light: #E0E0E0;
    --hover-dark: #121212;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-green);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: var(--accent-green);
}

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--accent-green), #1ed760);
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.hero-small {
    background: var(--accent-green);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

section {
    padding: 80px 20px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(29,185,84,0.2);
}

.card h3 {
    font-size: 1.4rem;
    margin: 20px 25px 10px;
}

.card p,
.card .genre {
    margin: 0 25px 20px;
    color: var(--text-gray);
}

.card .genre {
    font-weight: 500;
    color: var(--accent-green);
}

.btn {
    background: var(--accent-green);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,185,84,0.3);
}

.btn-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-green);
    color: white;
}

form div,
.form-group {
    margin-bottom: 25px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(29,185,84,0.1);
}

form textarea {
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.alert {
    padding: 18px 22px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(29,185,84,0.1);
    color: #1DB954;
    border-color: #1DB954;
}

.alert-error {
    background: rgba(239,68,68,0.1);
    color: #EF4444;
    border-color: #EF4444;
}

footer {
    background: var(--hover-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #CCCCCC;
}

.text-center {
    text-align: center;
}

.artist-profile {
    max-width: 1000px;
    margin: 0 auto;
}

.artist-header {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.artist-photo-large {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.artist-placeholder-large {
    width: 300px;
    height: 300px;
    background: var(--border-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.artist-info h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.genre-large {
    font-size: 1.3rem;
    color: var(--accent-green);
    font-weight: 600;
}

.artist-bio,
.artist-video,
.artist-social,
.booking-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.artist-bio h2,
.artist-video h2,
.artist-social h2,
.booking-section h2 {
    margin-bottom: 25px;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 12px 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}

.social-links a:hover {
    background: var(--accent-green);
    color: white;
}

.booking-section {
    text-align: center;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent-green);
}

.stat-card p {
    color: var(--text-gray);
}

.dashboard-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.table thead {
    background: var(--accent-green);
    color: white;
}

.table th,
.table td {
    padding: 18px 20px;
    text-align: left;
}

.table tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.table tbody tr:hover {
    background: rgba(29,185,84,0.05);
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-pending {
    background: #FEF3C7;
    color: #92400E;
}

.badge-confirmed {
    background: #D1FAE5;
    color: #065F46;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .artist-header {
        flex-direction: column;
    }

    .artist-photo-large,
    .artist-placeholder-large {
        width: 100%;
    }

    .container {
        padding: 0 20px;
    }
}

/* ===== NOUVELLE PAGE D'ACCUEIL RECORDS ===== */

.hero-records {
    background: linear-gradient(135deg, var(--accent-green) 0%, #1ed760 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero-records::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-content-records {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge,
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.section-badge {
    background: rgba(29,185,84,0.1);
    color: var(--accent-green);
}

.hero-records h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-records p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    color: white;
}

.hero-actions-records {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-green,
.btn-primary-green-large {
    background: var(--hover-dark);
    color: white;
}

.btn-primary-green:hover,
.btn-primary-green-large:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-outline-green,
.btn-outline-green-large {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-green:hover,
.btn-outline-green-large:hover {
    background: white;
    color: var(--accent-green);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--accent-green);
}

.story-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 25px;
    margin-top: 15px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-stats div {
    text-align: center;
}

.story-stats strong {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.story-stats span {
    color: var(--text-gray);
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-card {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.visual-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29,185,84,0.15);
}

.artists-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: 15px;
}

.artists-grid-featured {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.artist-card-featured {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.artist-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(29,185,84,0.2);
}

.artist-image {
  width: 100%;
  height: 300px; /* ou ajuste selon ton design */
  object-fit: cover; /* garde le bon ratio sans déformation */
  object-position: center top; /* centre sur le visage, souvent en haut du cadre */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.artist-placeholder-img {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.artist-card-content {
    padding: 25px;
}

.artist-genre-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(29,185,84,0.1);
    color: var(--accent-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.artist-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.artist-card-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.artist-card-actions {
    display: flex;
    gap: 10px;
}

.btn-artist-view,
.btn-artist-book {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-artist-view {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-artist-view:hover {
    background: var(--border-light);
}

.btn-artist-book {
    background: var(--accent-green);
    color: white;
}

.btn-artist-book:hover {
    background: #1ed760;
}

.view-all-artists {
    text-align: center;
    margin-top: 50px;
}

.services-records {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-grid-records {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-record-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-record-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29,185,84,0.15);
}

.service-icon-records {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-record-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-record-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.cta-records {
    background: linear-gradient(135deg, var(--accent-green), #1ed760);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cta-content-records h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content-records p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-records h1 {
        font-size: 2.5rem;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .artists-grid-featured {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.presskit-section-page {
    padding: 60px 0;
    background: var(--bg-light);
}

.presskit-header-page {
    text-align: center;
    margin-bottom: 48px;
}

.presskit-header-page h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.presskit-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.presskit-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.presskit-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.presskit-photo-section {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.presskit-photo-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.presskit-info-card,
.presskit-bio-card,
.presskit-video-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.presskit-info-card h2,
.presskit-bio-card h2,
.presskit-video-card h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label-pk {
    font-weight: 600;
    color: var(--text-gray);
}

.info-value-pk {
    color: var(--text-dark);
}

.bio-text {
    line-height: 1.8;
    color: var(--text-dark);
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29,185,84,0.3);
}

.presskit-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.presskit-sidebar-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.presskit-sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.presskit-social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.presskit-social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.presskit-social-links a:hover {
    background: var(--accent-green);
    color: white;
    transform: translateX(4px);
}

.btn-download-pk {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-pk:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29,185,84,0.3);
}

.contact-info-pk {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-booking-pk {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-booking-pk:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.presskit-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
}

.client-section,
.client-info-section {
    margin-top: 48px;
}

.client-section h2,
.client-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.client-quote-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .presskit-content-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .presskit-actions {
        flex-direction: column;
    }
}

.presskit-rider-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-green);
}

.presskit-rider-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rider-content {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.rider-label {
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rider-text {
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-line;
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
}

.artists-carousel .artist-card-featured img.artist-image {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  object-position: center top !important;
}
