/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c5a572;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --transition: all 0.3s ease;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin-bottom: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BUTTONS & FORM ELEMENTS ===== */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

    .btn-primary:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
    }

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

    .btn-outline:hover {
        background: var(--text-light);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

/* ===== BACKGROUND IMAGE ===== */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/studio_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

    .page-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.97);
        z-index: -1;
    }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.navbar-brand {
    text-decoration: none;
}

.studio-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nyc {
    font-size: 1rem;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Update navbar container */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Update nav-links styling */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Login link styling */
.login-link {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}

    .login-link:hover {
        background: var(--primary-color);
        color: var(--secondary-color) !important;
    }

    .login-link i {
        margin-right: 5px;
        font-size: 0.8rem;
    }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar .container > div:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .login-link {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}


    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 1px;
        transition: var(--transition);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== DROPDOWN MENU SYSTEM ===== */
.main-menu-item {
    position: relative;
}

    .main-menu-item > a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0.5rem 0;
        display: block;
    }

.first-level-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    min-width: 800px;
    border-radius: 10px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 165, 114, 0.2);
    z-index: 1000;
}

.main-menu-item:hover .first-level-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-item {
    position: relative;
    min-width: 160px;
}

    .category-item h3 {
        color: var(--primary-color);
        font-size: 1rem;
        margin-bottom: 0.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(197, 165, 114, 0.3);
        padding-bottom: 0.5rem;
    }

    .category-item i {
        color: var(--primary-color);
        font-size: 0.8rem;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .category-item:hover i {
        opacity: 1;
        transform: translateX(5px);
    }

.second-level-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    min-width: 300px;
    border-radius: 8px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 165, 114, 0.2);
    margin-left: 10px;
    z-index: 1001;
}

.category-item:hover .second-level-dropdown {
    opacity: 1;
    visibility: visible;
}

.second-level-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.second-level-item {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .second-level-item:hover {
        background: rgba(197, 165, 114, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }

.item-title {
    display: block;
    font-weight: 500;
}

.item-genre, .item-time {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.2rem;
}

.listen-live {
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid var(--primary-color);
    margin-top: 0.5rem;
}

    .listen-live i {
        margin-right: 0.5rem;
        color: var(--primary-color);
    }

.dropdown-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.btn-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .btn-dropdown:hover {
        gap: 1rem;
        color: var(--accent-color);
    }

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/studio-hero.jpg') center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.studio-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.welcome-section {
    background: var(--text-light);
    color: var(--secondary-color);
}

.services-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

    .services-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.artists-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

    .artists-section .section-header h2 {
        color: var(--text-light);
    }

/* Radio Section */
.radio-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 5rem 0;
    min-height: 400px;
}

    .radio-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .radio-section .section-header h2 {
        color: white;
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .radio-section .divider {
        width: 60px;
        height: 3px;
        background: var(--primary-color, #c5a572);
        margin: 0 auto 1.5rem;
    }

.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.radio-card {
    background: rgba(40, 40, 40, 0.95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(197, 165, 114, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .radio-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color, #c5a572);
        box-shadow: 0 15px 40px rgba(197, 165, 114, 0.2);
        background: rgba(50, 50, 50, 0.98);
    }

.radio-image {
    width: 100%;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
}

.radio-icon {
    font-size: 3rem;
    color: var(--primary-color, #c5a572);
    margin-bottom: 1rem;
}

.radio-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.radio-host {
    color: var(--primary-color, #c5a572);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.radio-time {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.btn-radio-listen {
    background: var(--primary-color, #c5a572);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    align-self: center;
}

    .btn-radio-listen:hover {
        background: #d4af37;
        transform: scale(1.05);
        color: #1a1a1a;
        box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
    }

    .btn-radio-listen i {
        margin-right: 0.5rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .radio-grid {
        grid-template-columns: 1fr;
    }

    .radio-section .section-header h2 {
        font-size: 2rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon i {
        font-size: 2rem;
        color: var(--secondary-color);
    }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .service-link i {
        transition: var(--transition);
    }

    .service-link:hover i {
        transform: translateX(5px);
    }

/* ===== SERVICE ICONS ROW (First Loop) ===== */
.service-icons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.service-icon-item {
    flex: 0 1 200px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

    .service-icon-item:hover {
        transform: translateY(-5px);
        background: rgba(197, 165, 114, 0.1);
    }

    .service-icon-item .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .service-icon-item .service-icon i {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

    .service-icon-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    .service-icon-item p {
        font-size: 0.9rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .service-icon-item .service-link {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

/* ===== ARTISTS SECTION - FIRST LOOP (Featured) ===== */
.featured-artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.featured-artist-card {
    text-align: center;
    transition: var(--transition);
}

    .featured-artist-card:hover {
        transform: translateY(-5px);
    }

.featured-artist-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(197, 165, 114, 0.3);
    transition: var(--transition);
}


.featured-artist-card:hover .featured-artist-image {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(197, 165, 114, 0.2);
}

.featured-artist-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.featured-artist-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== ARTISTS SECTION - SECOND LOOP (Grid) ===== */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed to 3 columns to match first loop */
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.artist-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    display: block;
}

    .artist-card:hover {
        transform: scale(1.05);
    }

.artist-image {
    height: 250px; /* Match featured artist height */
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.artist-card:hover .artist-image {
    transform: scale(1.1);
}

.artist-info {
    padding: 1.5rem;
    text-align: center;
}

    .artist-info h3 {
        margin-bottom: 0.5rem;
        color: var(--text-light);
    }

    .artist-info p {
        color: var(--primary-color);
    }

/* ===== RADIO SECTION ===== */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.radio-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

    .radio-card:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-5px);
    }

.radio-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.radio-card h3 {
    margin-bottom: 1rem;
}

.radio-host {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.radio-time {
    color: #888;
    margin-bottom: 1.5rem;
}

.btn-radio-listen {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

    .btn-radio-listen:hover {
        background: var(--accent-color);
        transform: scale(1.05);
    }

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-color, #c5a572);
    position: relative;
    z-index: 20;
    width: 100%;
    clear: both;
}

    .footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    color: var(--primary-color, #c5a572);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--primary-color, #c5a572);
            transform: translateX(5px);
        }

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    width: fit-content;
    min-width: 160px;
}

    .social-link i {
        font-size: 1.5rem;
        width: 28px;
        text-align: center;
    }

    .social-link .fa-youtube {
        color: #FF0000;
    }

    .social-link .fa-facebook {
        color: #1877F2;
    }

    .social-link .fa-instagram {
        color: #E4405F;
    }

    .social-link span {
        font-size: 1rem;
        font-weight: 500;
    }

    .social-link:hover {
        background: rgba(197, 165, 114, 0.15);
        transform: translateX(5px);
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 280px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 0.85rem 1.5rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

    .newsletter-input:focus {
        outline: none;
        border-color: var(--primary-color, #c5a572);
        background: rgba(255, 255, 255, 0.12);
    }

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.9rem;
    }

.newsletter-btn {
    background: var(--primary-color, #c5a572);
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: 100%;
}

    .newsletter-btn:hover {
        background: #d4af37;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Desktop Large */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .first-level-dropdown {
        min-width: 600px;
    }

    .dropdown-container {
        gap: 1rem;
    }

    .featured-artists-grid,
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .studio-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        background: var(--bg-dark);
        padding: 2rem;
        transition: var(--transition);
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    /* Mobile menu overrides */
    .first-level-dropdown {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 1rem;
        display: none;
        border: none;
    }

    .main-menu-item.active .first-level-dropdown {
        display: block;
    }

    .dropdown-container {
        flex-direction: column;
    }

    .category-item {
        width: 100%;
    }

    .second-level-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        margin-left: 1rem;
        display: none;
    }

    .category-item.active .second-level-dropdown {
        display: block;
    }

    /* Grid adjustments */
    .services-grid,
    .radio-grid {
        grid-template-columns: 1fr;
    }

    .featured-artists-grid,
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .featured-artist-image,
    .artist-image {
        height: 200px;
    }

    .service-icons-row {
        gap: 1rem;
    }

    .service-icon-item {
        flex: 0 1 150px;
        padding: 1rem;
    }

    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: left;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .featured-artists-grid,
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .studio-title {
        font-size: 2rem;
    }
}

/* Footer specific breakpoints */
@media (max-width: 900px) and (min-width: 769px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Login link styling */
.login-link {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.4rem 1.2rem !important;
    transition: var(--transition);
}

    .login-link:hover {
        background: var(--primary-color);
        color: var(--secondary-color) !important;
    }

    .login-link i {
        margin-right: 5px;
        font-size: 0.8rem;
    }


/* Admin Dropdown Menu */
.admin-dropdown {
    position: relative;
    display: inline-block;
}

.admin-dropdown-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .admin-dropdown-btn:hover {
        background: var(--primary-color);
        color: var(--secondary-color);
    }

.admin-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 165, 114, 0.2);
    z-index: 1000;
    overflow: hidden;
}

    .admin-dropdown-content.show {
        display: block;
    }

.admin-dropdown-header {
    padding: 1rem;
    background: rgba(197, 165, 114, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-dropdown-content a {
    color: #ccc;
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

    .admin-dropdown-content a:hover {
        background: rgba(197, 165, 114, 0.1);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
    }

    .admin-dropdown-content a i {
        width: 20px;
        text-align: center;
        color: var(--primary-color);
    }

.admin-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Logout special styling */
.admin-dropdown-content a:last-child {
    color: #dc3545;
}

    .admin-dropdown-content a:last-child i {
        color: #dc3545;
    }

    .admin-dropdown-content a:last-child:hover {
        background: rgba(220, 53, 69, 0.1);
        border-left-color: #dc3545;
    }

/* ===== STUDIO SHOWCASE SECTION ===== */
.studio-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.showcase-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

    .showcase-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(197,165,114,0.15);
        border-color: var(--primary-color);
    }

.card-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.showcase-card:hover .card-image {
    transform: scale(1.05);
}

.image-overlay-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197,165,114,0.2) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .image-overlay-card {
    opacity: 1;
}

.image-overlay-card i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.card-icon-header {
    padding: 2rem 1.5rem 0.5rem;
    text-align: center;
}

    .card-icon-header i {
        font-size: 2.5rem;
        color: var(--primary-color);
        background: rgba(197,165,114,0.1);
        padding: 1rem;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

.showcase-card:hover .card-icon-header i {
    background: var(--primary-color);
    color: white;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .card-content h3 {
        color: var(--secondary-color);
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .card-content p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

/* Equipment List */
.equipment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.equipment-badge {
    background: rgba(197,165,114,0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(197,165,114,0.2);
    transition: all 0.3s ease;
}

    .equipment-badge:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

.equipment-note {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
}

/* Artist Badges */
.artist-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.artist-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(197,165,114,0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .artist-badge:hover {
        background: rgba(197,165,114,0.1);
        border-color: rgba(197,165,114,0.3);
        transform: translateX(5px);
    }

.artist-name {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.artist-genre {
    color: var(--primary-color);
    font-size: 0.8rem;
    background: rgba(197,165,114,0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
    align-self: flex-start;
}

    .card-link:hover {
        gap: 0.6rem;
        color: var(--accent-color);
    }

/* Philosophy Card */
.philosophy-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.studio-signature {
    margin-top: auto;
    text-align: right;
    border-top: 1px solid #eaeaea;
    padding-top: 1rem;
}

    .studio-signature span {
        display: block;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .studio-signature small {
        color: #888;
        font-size: 0.8rem;
    }

/* Responsive */
@media (max-width: 1200px) {
    .showcase-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-cards {
        grid-template-columns: 1fr;
    }

    .artist-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* ===== HERO SECTION - 2 CARD LAYOUT ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero-cards-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 500px;
}

    .hero-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
        box-shadow: 0 30px 50px rgba(197, 165, 114, 0.2);
    }

/* Text Card */
.text-card .card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.text-card .studio-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.text-card .tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .hero-buttons .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

/* Video Card */
.video-card {
    padding: 1rem;
    display: flex;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Video Controls Container */
.video-controls {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

/* Base Button Style - Shared by all control buttons */
.video-play-btn,
.video-mute-btn,
.video-fullscreen-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    outline: none;
}

    /* Hover effect for all buttons */
    .video-play-btn:hover,
    .video-mute-btn:hover,
    .video-fullscreen-btn:hover {
        background: var(--primary-color);
        color: var(--secondary-color);
        transform: scale(1.1);
    }

/* Optional: Slight variation for play button */
.video-play-btn {
    background: rgba(197, 165, 114, 0.25);
    border-width: 2px;
}

/* Video Progress Bar */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 10;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width 0.1s linear;
}

/* Fullscreen Styles */
.video-wrapper:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-wrapper:-webkit-full-screen .hero-video {
        max-width: 100vw;
        max-height: 100vh;
        object-fit: contain;
    }

.video-wrapper:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-wrapper:fullscreen .hero-video {
        max-width: 100vw;
        max-height: 100vh;
        object-fit: contain;
    }

/* Responsive Design */
@media (max-width: 968px) {
    .hero-cards-2col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-card {
        min-height: auto;
    }

    .text-card .card-content {
        padding: 2.5rem;
    }

    .text-card .studio-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .text-card .card-content {
        padding: 2rem;
    }

    .text-card .studio-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
            text-align: center;
        }

    .video-controls {
        bottom: 0.5rem;
        left: 0.5rem;
        gap: 0.3rem;
    }

    .video-play-btn,
    .video-mute-btn,
    .video-fullscreen-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}