/* ============================= */
/* Global Styles - Professional Polish */
/* ============================= */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Refined global styles */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    padding-bottom: 80px; /* Space for fixed Spotify footer */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional section spacing - INCREASED for breathing room */
section {
    padding: 120px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* Improved paragraph spacing for readability */
p {
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* Alternating section backgrounds for visual separation */
section:nth-of-type(odd) {
    background: var(--color-background);
}

section:nth-of-type(even) {
    background: var(--color-surface);
}

/* Subtle top border for sections (visual separation) */
section:not(:first-of-type) {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ============================= */
/* Navbar (Fixed & Responsive) */
/* ============================= */
/* ============================= */
/* Fix Navbar Overlapping Content */
/* ============================= */
.content {
    margin-top: 80px;
    padding: var(--space-5);
}

/* Navbar - Professional Design System Integration */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    padding: var(--space-4) var(--space-8);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: var(--z-fixed);
    height: 80px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--color-border-subtle);
    transition: var(--transition-default);
}

/* Ensure Mobile Navbar Doesn't Overlap Content */
@media (max-width: 768px) {
    .content {
        margin-top: 90px; /* Adjust for smaller screens */
    }
}
}

/* Logo Container (Prevent Push) */
.logo-container {
    position: absolute;
    left: 20px; /* Keeps logo on the left */
}

.logo-img {
    height: 50px;
    max-width: 140px;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.logo-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Navbar Links */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;  /* Keeps the links centered */
    width: 100%;
    padding: 0 20px;
    position: relative; /* Allows positioning of login/register */
}

/* Center Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center; /* Keeps links centered */
    flex-grow: 1; /* Ensures it fills space */
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    padding: var(--space-3);
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
    color: var(--color-accent-primary);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:focus {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 4px;
}

/* Navbar Auth Buttons (Login/Register) */
.auth-links {
    position: absolute;
    right: 20px; /* Keeps login/register on the right */
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Style Login & Register Buttons */
.auth-links .auth-button {
    color: var(--color-text-primary); /* Change from red */
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent; /* No background */
}

/* Hover Effect */
.auth-links .auth-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Fix Logout Button */
.auth-links .logout {
    background: rgba(255, 255, 255, 0.1);
}

/* Fix for Mobile */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between; /* Adjust for mobile */
    }

    /* Fix Navbar Link Font Size */
    .nav-links a {
        font-size: 1.1rem;  /* Increase size */
        font-weight: 600;   /* Make it slightly bolder */
        color: var(--color-text-primary);       /* Ensure contrast */
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

    /* Optional: Keep Mobile Links Consistent */
    @media (max-width: 768px) {
        .nav-links a {
            font-size: 1rem; /* Adjust slightly for mobile */
        }
    }

    .menu-toggle {
        display: block; /* Show menu button */
    }

    .auth-links {
        position: static;
        margin-left: auto;
    }
}

.welcome-message {
    color: var(--color-text-secondary);
    font-weight: bold;
    margin-right: 10px;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    margin-left: auto;
    transition: var(--transition-fast);
}

.menu-toggle svg {
    color: var(--color-text-primary);
    width: 24px;
    height: 24px;
}

.menu-toggle:hover svg {
    color: var(--color-accent-primary);
}

.menu-toggle:focus {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between; /* Allows everything to align properly */
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(212, 98, 47, 0.3);
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
    }

    .nav-links li {
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        color: var(--color-text-primary);
        font-size: 1.1rem;
        font-weight: 500;
    }

    .menu-toggle {
        display: block; /* Only appears on mobile */
        z-index: 1000;
    }

    .auth-links {
        position: static;
        justify-content: center;
        margin-top: 10px;
    }

    .auth-links .auth-button {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* ============================= */
/* Hero Section (YouTube Video Background) */
/* ============================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* YouTube Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Make iframe Cover Full Screen */
.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Overlay for Contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 80%;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: glitch 1.5s infinite alternate;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 10px 0;
    opacity: 0.8;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    background: white;
    color: var(--color-text-inverse);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: gray;
    transform: scale(1.05);
}

/* Removed dated glitch and scanline effects */
/* ============================= */
/* Featured Media Layout (Centered YouTube Videos) */
/* ============================= */
.featured-media {
    text-align: center;
    padding: 50px 20px;
}

.media-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.media-item {
    width: 320px;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.media-item:hover {
    transform: scale(1.05);
}

.media-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================= */
/* Location & Info Section (Google Maps + Info) */
/* ============================= */
.location-info {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.info-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    justify-content: space-between;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    text-align: left;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.info-card h2 {
    margin-top: 0;
}

.info-card p {
    font-size: 1rem;
    opacity: 0.8;
}

.info-card .cta-button {
    display: inline-block;
    margin-top: 15px;
}

/* Google Maps Embed */
.map-container {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
}
/* ============================= */
/* MEDIA PAGE (REDESIGNED) */
/* ============================= */
.media-page {
    padding-bottom: 100px;
}

/* Media Hero */
.media-hero {
    padding: 120px 40px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-primary-dark) 100%);
}

.media-intro {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Twitch Section */
.twitch-section {
    background: var(--color-background);
    padding: 100px 40px;
}

.section-header-with-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.live-badge {
    background: var(--color-accent-primary, #d4622f);
    color: var(--color-text-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Removed distracting pulse animation */
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.twitch-embed-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#twitch-embed {
    border-radius: 8px;
    overflow: hidden;
}

/* Media Stats Divider */
.media-divider-section {
    background: white;
    padding: 60px 40px;
}

.media-stats-bar {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.media-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.media-stat .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-accent-primary);
    line-height: 1;
}

.media-stat .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

/* YouTube Releases Section */
.youtube-releases-section {
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-background) 100%);
    padding: 100px 40px;
    text-align: center;
}

.youtube-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.youtube-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.youtube-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 98, 47, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-card-info {
    padding: 25px;
    text-align: left;
}

.youtube-card-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--color-text-primary);
}

.youtube-card-info p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Streaming CTA Section */
.streaming-cta-section {
    background: var(--color-background);
    padding: 100px 40px;
    text-align: center;
}

.streaming-cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
}

.streaming-cta-section p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin: 0 0 50px 0;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.streaming-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-primary);
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.streaming-button:hover {
    background: rgba(212, 98, 47, 0.1);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 98, 47, 0.3);
}

.streaming-button img {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 968px) {
    .media-hero {
        padding: 100px 20px 60px;
    }

    .twitch-section,
    .youtube-releases-section,
    .streaming-cta-section {
        padding: 80px 20px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .media-stats-bar {
        gap: 40px;
    }

    .media-stat .stat-number {
        font-size: 3rem;
    }

    .streaming-links {
        flex-direction: column;
        align-items: center;
    }

    .streaming-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================= */
/* ARTISTS GALLERY PAGE (NEW) */
/* ============================= */
.artists-gallery-page {
    padding-bottom: 100px;
}

.artists-grid-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-background) 100%);
}

.artists-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Artist Card Gallery Item */
.artist-card-gallery {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-card-gallery:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* 2026 Priority Corner Badge */
.corner-badge-2026 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent-primary);
    color: var(--color-text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(212, 98, 47, 0.4);
}

/* Artist Card Image Container */
.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artist-card-gallery:hover .artist-card-image img {
    transform: scale(1.1);
}

/* Overlay that appears on hover */
.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(212, 98, 47, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    box-sizing: border-box;
}

.artist-card-gallery:hover .artist-card-overlay {
    opacity: 1;
}

/* Artist Name */
.artist-card-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text-primary);
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.artist-card-gallery:hover .artist-card-name {
    transform: translateY(0);
}

/* Genre Badge */
.artist-card-genre {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: var(--color-text-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s;
}

.artist-card-gallery:hover .artist-card-genre {
    transform: translateY(0);
}

/* View CTA */
.artist-card-cta {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
}

.artist-card-gallery:hover .artist-card-cta {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .artist-card-name {
        font-size: 1.6rem;
    }
}

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

/* ============================= */
/* ARTIST DETAIL PAGE */
/* ============================= */
.artist-detail-page {
    padding-bottom: 100px;
}

/* Hero Section */
.artist-detail-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.artist-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.artist-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.artist-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.8) 70%,
        var(--color-background) 100%
    );
}

.artist-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    text-align: left;
}

.artist-detail-badge {
    display: inline-block;
    background: rgba(212, 98, 47, 0.2);
    border: 2px solid var(--color-accent-primary);
    color: var(--color-accent-primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.artist-detail-name {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1;
}

.artist-detail-genre {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Bio Section */
.artist-bio-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-primary-dark) 100%);
    padding: 100px 40px;
}

.artist-bio-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.artist-bio-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--color-text-secondary);
    margin-top: 40px;
}

/* Releases Section */
.artist-releases-section {
    background: var(--color-background);
    padding: 100px 40px;
}

.artist-releases-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.release-card-detail {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--color-accent-primary);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.release-card-detail:hover {
    background: rgba(212, 98, 47, 0.05);
    border-left-color: var(--color-accent-primary);
    transform: translateY(-5px);
}

.release-card-detail h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: var(--color-text-primary);
}

.release-year {
    font-size: 1rem;
    color: var(--color-accent-primary);
    margin: 0 0 10px 0;
    font-weight: 600;
}

.release-streams {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* New Media Releases Grid */
.releases-grid-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.release-card-media {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.release-card-media:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 98, 47, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.release-media-embed {
    width: 100%;
    background: var(--color-background);
}

.youtube-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.release-info {
    padding: 25px 30px;
    text-align: left;
}

.release-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--color-text-primary);
}

.release-info .release-year {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.release-info .release-streams {
    font-size: 1rem;
    color: var(--color-accent-primary);
    font-weight: 700;
    margin: 10px 0 0 0;
}

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

/* Achievements Section */
.artist-achievements-section {
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-background) 100%);
    padding: 100px 40px;
}

.artist-achievements-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 60px 0 0 0;
}

.achievements-list li {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-accent-primary);
    padding: 25px 30px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: left;
    transition: all 0.3s ease;
}

.achievements-list li:hover {
    background: rgba(212, 98, 47, 0.05);
    padding-left: 40px;
}

/* Socials Section */
.artist-socials-section {
    background: var(--color-background);
    padding: 100px 40px;
}

.artist-socials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-10px);
}

.social-link img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.2);
}

.social-link span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Back Button */
.back-to-artists-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-primary-dark) 100%);
    padding: 80px 40px;
    text-align: center;
}

.back-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(212, 98, 47, 0.1);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 968px) {
    .artist-detail-name {
        font-size: 4rem;
        letter-spacing: 4px;
    }

    .artist-hero-content {
        padding: 40px 40px;
    }

    .artist-bio-text {
        font-size: 1.1rem;
    }

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

    .social-icons-large {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .artist-detail-name {
        font-size: 2.5rem;
    }

    .artist-hero-content {
        padding: 30px 20px;
    }
}

/* ============================= */
/* Label Page Styling (OLD - KEEP FOR NOW) */
/* ============================= */
.label-container {
    padding-bottom: 100px;
}

.artists-hero {
    padding: 120px 40px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-primary-dark) 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.artist-intro {
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    text-align: center;
}

/* Artist Row (Main Layout) */
.artist-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    text-align: left;
    padding: 0 40px;
    position: relative;
}

/* Add subtle divider between rows */
.artist-row::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 98, 47, 0.3), transparent);
}

/* Last row shouldn't have divider */
.artist-row:last-of-type::after {
    display: none;
}

/* Reverse Order for Every Second Row */
.artist-row.odd {
    flex-direction: row-reverse;
}

/* Artist Image */
.artist-image {
    width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 98, 47, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.artist-row:hover .artist-image::before {
    opacity: 1;
}

.artist-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    display: block;
}

.artist-row:hover .artist-image img {
    transform: scale(1.05);
}

/* Artist Info Box */
.artist-info {
    width: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.artist-info:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 98, 47, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Artist Name */
.artist-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.artist-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width 0.3s ease;
}

.artist-info:hover h2::after {
    width: 100%;
}

/* Artist Role (Red accent genre tags) */
.artist-role {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-accent-primary);
    background: rgba(212, 98, 47, 0.1);
    border: 1px solid var(--color-accent-primary);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 2026 Priority Badge */
.priority-badge-2026 {
    display: inline-block;
    background: rgba(212, 98, 47, 0.15);
    border: 1px solid var(--color-accent-primary);
    color: var(--color-accent-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-top: 20px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease;
    opacity: 0.8;
}

.social-icons img:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* Fixed Spotify Footer Player */
.spotify-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-top: 1px solid rgba(212, 98, 47, 0.2);
    transition: transform 0.4s ease;
}

.spotify-footer.collapsed {
    transform: translateY(calc(100% - 45px));
}

.toggle-spotify {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    padding: var(--space-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.toggle-spotify:hover {
    background: rgba(212, 98, 47, 0.1);
    color: var(--color-accent-primary);
}

.toggle-spotify svg {
    transition: transform 0.4s ease;
}

.spotify-footer:not(.collapsed) .toggle-spotify svg {
    transform: rotate(180deg);
}

.spotify-player {
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.spotify-footer.collapsed .spotify-player {
    opacity: 0;
    pointer-events: none;
}

.spotify-footer iframe {
    display: block;
    width: 100%;
    border: none;
}
/* Signup Page Styling */
.signup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../img/background.jpg') center/cover; /* Change to match your aesthetic */
}

.signup-card {
    background: rgba(20, 20, 20, 0.9); /* Dark semi-transparent */
    padding: 2rem;
    width: 350px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-title {
    color: var(--color-text-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.signup-subtitle {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.signup-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.signup-form input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--color-text-primary);
    outline: none;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.signup-button {
    width: 100%;
    padding: 12px;
    background: var(--color-surface-elevated); /* Red pop for CTA */
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.signup-button:hover {
    background: var(--color-surface-elevated);
}

.signup-footer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.login-link {
    color: var(--color-text-tertiary);
    font-weight: bold;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--color-accent-primary);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ============================= */
/* Footer */
/* ============================= */
/* Footer - Professional Design */
.footer {
    background: var(--color-surface);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    border-top: 1px solid var(--color-border-subtle);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-20);
}

.footer p {
    margin: 0;
    letter-spacing: var(--letter-spacing-wide);
}

/* Auth Links (Top Right) */
.auth-links {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.auth-links .auth-button {
    color: var(--color-text-primary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.auth-links .auth-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.auth-links .logout {
    background: rgba(255, 255, 255, 0.1);
}

.welcome-message {
    color: var(--color-text-secondary);
    font-weight: bold;
    margin-right: 10px;
}

/* Ensure Auth Links Are Responsive */
@media (max-width: 768px) {
    .auth-links {
        position: static;
        justify-content: center;
        margin-top: 10px;
    }

    .auth-links .auth-button {
        padding: 6px 10px;
        font-size: 14px;
    }
}
/* ============================= */
/* Authentication Pages (Login & Signup) */
/* ============================= */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../img/background.jpg') center/cover; /* Matches signup page */
}

/* Auth Card (Login & Signup) */
.auth-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 2rem;
    width: 350px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Title and Subtitle */
.auth-title {
    color: var(--color-text-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.auth-subtitle {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Input Fields */
.auth-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--color-text-primary);
    outline: none;
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Button Styling */
.auth-button {
    width: 100%;
    padding: 12px;
    background: var(--color-accent-primary); /* Bold red CTA */
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-button:hover {
    background: var(--color-accent-primary);
}

/* Footer Links */
.auth-footer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.auth-link {
    color: var(--color-accent-primary);
    font-weight: bold;
    text-decoration: none;
}

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

/* Hero Slideshow */
.hero-slider {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.active {
    opacity: 1;
}

/* Studio Tab Styling */
.studio-container {
    width: 80%;
    margin: 40px auto;
    text-align: center;

}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
    padding: 12px 24px;
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 1rem;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
}

.tab-button.active {
    background: white;
    color: var(--color-text-inverse);
}

.studio-content {
    display: none;
}

.studio-content.active {
    display: block;
}

/* Studio Image Slideshow */
.studio-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.studio-slide {
    width: 100%;
    flex: 0 0 100%;
}

.studio-slide img {
    width: 100%;
    border-radius: 10px;
}

/* Features List */
.studio-features {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
}

.studio-features li {
    font-size: 1.1rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Book Now Button */
.book-now-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--color-spotify);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.book-now-button:hover {
    background: var(--color-spotify);
}

.booking-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("../img/studio_bg.jpg") center/cover;
}

.booking-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 2rem;
    width: 350px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.booking-title {
    color: var(--color-text-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.booking-button {
    width: 100%;
    padding: 12px;
    background: var(--color-success);
    color: var(--color-text-primary);
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* ============================= */
/* Studio Image Slider (Wider & Responsive) */
/* ============================= */
.studio-slider {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Wider for full visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

/* Ensure Full Image Visibility */
.studio-slide {
    display: none;
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease-in-out;
}

/* First image always visible */
.studio-slider .studio-slide:first-child {
    display: block;
}

/* Make Images Wider */
.studio-slide img {
    width: 100%;
    height: auto;
    max-height: 90vh; /* Ensures full visibility */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Arrows for Navigation */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text-inverse);
    border: none;
    padding: 10px 15px;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 50%;
    opacity: 0.9;
    z-index: 10;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

/* ============================= */
/* Studio Features (Professional Selling Points) */
/* ============================= */
.studio-features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.feature-card {
    background: var(--color-surface-elevated); /* Slightly lighter grey for contrast */
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 900px; /* Increased width */
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect for Premium Look */
.feature-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Studio Title */
.feature-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 3px solid black;
    padding-bottom: 10px;
}

/* Distinct Selling Points with Bullet Points */
.studio-features {
    list-style: disc;
    padding: 20px;
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Slight Padding Between Points */
.studio-feature-item {
    padding: 8px 0;
}

/* Book Now Button */
.book-now-button {
    display: block;
    margin: 30px auto 0;
    padding: 16px 32px;
    background: white;
    color: var(--color-text-inverse);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    width: fit-content;
    transition: background 0.3s ease-in-out;
}

.book-now-button:hover {
    background: var(--color-surface-elevated);
    color: var(--color-text-inverse);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .feature-card {
        width: 95%;
    }

    .studio-features {
        font-size: 1rem;
    }

    .book-now-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}
/* ============================= */
/* Page Padding to Prevent Footer Overlap */
/* ============================= */
.studio-container {
    padding-bottom: 100px; /* Ensures space between content and footer */
}

/* If Needed, Adjust for Smaller Screens */
@media (max-width: 768px) {
    .studio-container {
        padding-bottom: 120px; /* Extra space for mobile */
    }
}

/* ============================= */
/* NEW HOMEPAGE - VISUAL FIRST */
/* ============================= */

/* Fullscreen Hero */
/* ============================= */
/* Hero Section - Refined Professional Design */
/* ============================= */
.fullscreen-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-background);
}

/* Hero Background Image (replaces YouTube embed) */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg,
        var(--color-primary-dark) 0%,
        var(--color-primary) 50%,
        var(--color-accent-primary) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-medium);
    z-index: 1;
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: var(--space-8);
}

.hero-center h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: var(--letter-spacing-wider);
    margin: 0;
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
    /* Reduced uppercase usage - no text-transform */
}

.hero-line {
    width: 120px;
    height: 3px;
    background: var(--color-accent-primary);
    margin: var(--space-8) auto;
    transition: width var(--duration-slow) var(--ease-out);
}

.fullscreen-hero:hover .hero-line {
    width: 180px;
}

.hero-location {
    font-size: var(--font-size-xl);
    letter-spacing: var(--letter-spacing-wide);
    font-weight: var(--font-weight-light);
    margin: 0;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.hero-tagline {
    font-size: var(--font-size-md);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: var(--font-weight-regular);
    margin-top: var(--space-6);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
}

/* Removed scroll indicator emoji and bounce animation */

/* Artist Grid Hero Section */
.artist-grid-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-stat {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.15;
    pointer-events: none;
}

.stat-1 {
    top: 10%;
    right: 8%;
}

.stat-2 {
    bottom: 15%;
    left: 10%;
}

.stat-number {
    font-size: 18rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-text-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 2rem;
    letter-spacing: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}

.year-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    opacity: 0.03;
    letter-spacing: 20px;
    color: var(--color-text-primary);
}

.artist-columns {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    height: 280px;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-inner {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.artist-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-card .genre {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.artist-card:hover::after {
    transform: scaleX(1);
}

/* ============================= */
/* TRACK RECORD SECTION */
/* ============================= */
/* Track Record Section - Professional Refinement */
.track-record {
    background: var(--color-background);
    padding: var(--section-padding-lg) var(--space-8);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
    position: relative;
}

.track-record-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.track-record-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wide);
    margin: 0 0 var(--space-5) 0;
    display: block;
    width: 100%;
    color: var(--color-text-primary);
}

.track-record-intro {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    letter-spacing: var(--letter-spacing-normal);
    line-height: var(--line-height-relaxed);
}

.achievements-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Achievement Cards - Refined Design */
.achievement-card.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg,
        rgba(212, 98, 47, 0.08) 0%,
        rgba(231, 111, 81, 0.05) 100%);
    border: 2px solid var(--color-accent-primary);
    box-shadow: 0 4px 20px rgba(212, 98, 47, 0.15);
}

.achievement-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-medium);
    padding: var(--space-10) var(--space-8);
    border-radius: var(--radius-lg);
    transition: var(--transition-default);
    text-align: center;
}

.achievement-card:hover {
    background: var(--color-surface-elevated);
    border-color: var(--color-accent-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement-stat {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-3);
    color: var(--color-accent-primary);
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-label {
    font-size: var(--font-size-sm);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-semibold);
}

.achievement-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--space-4) 0;
    color: var(--color-text-primary);
}

.achievement-card p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin: 0;
}

.track-record-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.track-record-footer p {
    font-size: 1.2rem;
    color: var(--color-text-tertiary);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .track-record {
        padding: 60px 20px;
    }

    .track-record-header h2 {
        font-size: 2.5rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievement-card.highlight {
        grid-column: span 1;
    }

    .achievement-stat {
        font-size: 3rem;
    }
}

/* ============================= */
/* 2026 PROGRAM SHOWCASE */
/* ============================= */
/* 2026 Program Section - Professional Design */
.program-showcase {
    background: linear-gradient(135deg,
        var(--color-primary-dark) 0%,
        var(--color-primary) 100%);
    padding: var(--section-padding-lg) var(--space-8);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.program-header h2 {
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: var(--letter-spacing-widest);
    margin: 0 0 var(--space-16) 0;
    background: linear-gradient(135deg,
        var(--color-accent-primary) 0%,
        var(--color-text-primary) 50%,
        var(--color-text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-stats {
    display: flex;
    gap: var(--space-20);
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.stat-num {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-accent-primary);
}

.stat-text {
    font-size: var(--font-size-sm);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-top: 0;
    font-weight: var(--font-weight-medium);
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    width: 100%;
}

.release-card {
    background: linear-gradient(135deg,
        rgba(212, 98, 47, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(212, 98, 47, 0.3);
    border-left: 4px solid var(--color-accent-primary);
    padding: 40px 35px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.release-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 98, 47, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.release-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.release-card:hover {
    background: linear-gradient(135deg,
        rgba(212, 98, 47, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--color-accent-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 98, 47, 0.3);
}

.release-card:hover::before {
    width: 120px;
    height: 120px;
    opacity: 1;
}

.release-card:hover::after {
    transform: scaleX(1);
}

.release-month {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-widest);
    color: var(--color-text-primary);
    background: var(--color-accent-primary);
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(212, 98, 47, 0.4);
}

.release-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-extrabold);
    margin: 0 0 var(--space-4) 0;
    color: var(--color-text-primary);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    text-transform: uppercase;
}

.release-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Responsive for Program Showcase */
@media (max-width: 968px) {
    .program-showcase {
        padding: 60px 20px;
    }

    .program-header h2 {
        font-size: 5rem;
        letter-spacing: 8px;
        margin-bottom: 40px;
    }

    .program-stats {
        gap: 40px;
    }

    .stat-num {
        font-size: 3.5rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .release-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .release-card {
        padding: 30px 25px;
    }

    .release-card h3 {
        font-size: 1.5rem;
    }

    .release-card p {
        font-size: 0.9rem;
    }
}

/* Full Width CTA */
/* CTA Section - Professional Design */
.full-cta {
    background: linear-gradient(135deg,
        var(--color-surface-elevated) 0%,
        var(--color-surface) 100%);
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.full-cta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-20) var(--space-20);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.full-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 98, 47, 0.1),
        transparent);
    transition: left var(--duration-slower) var(--ease-out);
}

.full-cta-link:hover::before {
    left: 100%;
}

.full-cta-link:hover {
    background: rgba(212, 98, 47, 0.05);
}

.cta-label {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: var(--letter-spacing-wide);
}

.cta-arrow {
    font-size: clamp(2.5rem, 6vw, 4rem);
    transition: transform var(--duration-normal) var(--ease-out);
    color: var(--color-accent-primary);
}

.full-cta-link:hover .cta-arrow {
    transform: translateX(var(--space-5));
}

/* Responsive */
@media (max-width: 968px) {
    .hero-center h1 {
        font-size: 5rem;
        letter-spacing: 6px;
    }

    .artist-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .artist-card {
        height: 240px;
    }

    .artist-card h3 {
        font-size: 1.6rem;
    }

    .artist-card .genre {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 12rem;
    }

    .stat-label {
        font-size: 1.5rem;
    }

    .year-badge {
        font-size: 12rem;
    }

    .full-cta-link {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }

    .cta-label {
        font-size: 2.5rem;
    }

    .cta-arrow {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .artist-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .artist-card {
        height: 200px;
    }

    .artist-card h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 8rem;
    }

    .year-badge {
        font-size: 8rem;
    }
}

/* ============================= */
/* ABOUT PAGE STYLES */
/* ============================= */

.about-page {
    padding-bottom: 100px;
}

.about-hero {
    padding: 100px 20px 60px;
    text-align: center;
}

.about-badge {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin: 0 auto 20px auto;
    font-weight: 600;
    width: fit-content;
}

.hero-description {
    max-width: 600px;
    margin: 20px auto;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, var(--color-background) 0%, #151515 100%);
    padding: 80px 20px;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}


.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.value-card p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(180deg, var(--color-background) 0%, #151515 100%);
    padding: 80px 20px;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Program Section */
.program-section {
    padding: 80px 20px;
    background: var(--color-background);
    text-align: center;
}

.program-highlight {
    margin: 40px auto 50px;
}

.highlight-stat {
    font-size: 6rem;
    font-weight: bold;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-text-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    margin-top: 10px;
}

.objectives-compact {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.objective-compact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.objective-compact:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}


.objective-compact span:last-child {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Operating Simple Section */
.operating-simple {
    background: linear-gradient(180deg, var(--color-background) 0%, #151515 100%);
    padding: 80px 20px;
    text-align: center;
}

.operations-simple {
    max-width: 1000px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.operation-simple-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.operation-simple-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}


.operation-simple-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.operation-simple-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Contact Section Simple */
.contact-section-simple {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-background) 100%);
    text-align: center;
}

.contact-section-simple h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-section-simple p {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.contact-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: var(--color-text-primary);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--color-text-inverse);
}

/* Responsive */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .operations-simple {
        grid-template-columns: 1fr;
    }

    .objectives-compact {
        grid-template-columns: 1fr;
    }

    .highlight-stat {
        font-size: 4rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .contact-section-simple h2 {
        font-size: 2.2rem;
    }

    .contact-section-simple p {
        font-size: 1.1rem;
    }

    .contact-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}
/* ============================= */
/* PROGRAM PAGES (Bodega Elevate & Pass The Mic) */
/* ============================= */
.program-page {
    padding-bottom: 100px;
}

.program-hero {
    padding: 120px 40px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-primary-dark) 100%);
}

.program-badge {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin: 0 auto 30px auto;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

.program-about {
    background: var(--color-background);
    padding: 80px 40px;
    text-align: center;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-block h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.content-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.program-curriculum {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    padding: 100px 40px;
}

.curriculum-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.curriculum-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.curriculum-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-text-primary);
}

.curriculum-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-card li {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text-secondary);
    padding-left: 20px;
    position: relative;
}

.curriculum-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-text-tertiary);
}

.program-network {
    background: var(--color-background);
    padding: 80px 40px;
    text-align: center;
}

.network-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.network-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.program-impact {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    padding: 100px 40px;
}

.impact-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.impact-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

.program-community {
    background: var(--color-background);
    padding: 80px 40px;
    text-align: center;
}

.program-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-background) 100%);
    padding: 100px 40px;
    text-align: center;
}

.program-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.program-cta p {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pass The Mic specific styles */
.program-success {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    padding: 100px 40px;
}

.success-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.success-list li {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.success-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-text-primary);
    padding-left: 30px;
}

.program-format {
    background: var(--color-background);
    padding: 80px 40px;
    text-align: center;
}

.format-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.format-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.format-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.format-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.format-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

.program-future {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    padding: 80px 40px;
    text-align: center;
}

.program-philosophy {
    background: var(--color-background);
    padding: 100px 40px;
    text-align: center;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .program-hero {
        padding: 100px 20px 60px;
    }

    .program-about,
    .program-network,
    .program-community,
    .program-format,
    .program-future {
        padding: 60px 20px;
    }

    .program-curriculum,
    .program-impact,
    .program-success,
    .program-philosophy,
    .program-cta {
        padding: 80px 20px;
    }

    .curriculum-grid,
    .format-grid,
    .impact-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .network-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================= */
/* TEAM SECTION */
/* ============================= */
.team-section {
    background: linear-gradient(180deg, var(--color-background) 0%, #151515 100%);
    padding: 100px 40px;
    text-align: center;
}

.team-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.team-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--color-text-primary);
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0 !important;
    font-weight: 600;
}

.team-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

.team-responsibilities {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.team-responsibilities li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    padding: 8px 0 8px 24px;
    position: relative;
}

.team-responsibilities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #D4622F;
    font-weight: bold;
}

/* ============================= */
/* INFRASTRUCTURE SECTION */
/* ============================= */
.infrastructure-section {
    background: var(--color-background);
    padding: 100px 40px;
    text-align: center;
}

.infrastructure-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.infra-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.infra-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-text-primary);
    padding-left: 30px;
}

.infra-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--color-text-primary);
}

.infra-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

.infra-card a {
    transition: color 0.2s ease;
}

.infra-card a:hover {
    color: white !important;
}

.infra-link {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.infra-link:hover {
    color: var(--color-text-primary);
}

/* Responsive */
@media (max-width: 968px) {
    .team-section,
    .infrastructure-section {
        padding: 80px 20px;
    }

    .team-grid,
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Program Links */
.program-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.program-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.program-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .program-links {
        flex-direction: column;
        align-items: center;
    }

    .program-link {
        width: 100%;
        max-width: 250px;
    }
}

/* ============================= */
/* STUDIO HERO SECTION */
/* ============================= */
.studio-hero-section {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    padding: 120px 40px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.studio-tagline {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin: 0 0 20px 0;
    font-weight: 400;
}

.studio-partnership {
    font-size: 1rem;
    color: var(--color-text-tertiary);
    font-style: italic;
    margin: 0;
}

@media (max-width: 968px) {
    .studio-hero-section {
        padding: 100px 20px 60px;
    }

    .studio-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .studio-tagline {
        font-size: 1.1rem;
    }
}

/* ============================= */
/* BOLD STATEMENT BAR (White bar style - clean) */
/* ============================= */
/* Statement Bar - Refined Professional Design */
.statement-bar {
    background: linear-gradient(135deg, var(--color-surface-elevated) 0%, var(--color-surface) 100%);
    color: var(--color-text-primary);
    padding: var(--space-12) var(--space-8);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.statement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    font-size: var(--font-size-base);
}

.statement-year {
    font-size: var(--font-size-lg);
    color: var(--color-accent-primary);
    font-weight: var(--font-weight-bold);
}

.statement-text {
    font-size: var(--font-size-base);
    /* Reduced from all-caps aggressive style */
}

.statement-divider {
    font-size: var(--font-size-xl);
    opacity: 0.3;
    color: var(--color-accent-secondary);
}

@media (max-width: 968px) {
    .statement-bar {
        padding: 20px 20px;
    }

    .statement-content {
        gap: 15px;
        font-size: 0.85rem;
    }

    .statement-year {
        font-size: 1rem;
    }

    .statement-text {
        font-size: 0.85rem;
    }
}

/* ============================= */
/* DIAGONAL SECTION DIVIDERS */
/* ============================= */
.diagonal-divider {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, white 0%, white 50%, var(--color-background) 50%, var(--color-background) 100%);
    position: relative;
}

.diagonal-divider-reverse {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background) 50%, white 50%, white 100%);
    position: relative;
}

/* ============================= */
/* ENHANCED TRACK RECORD WITH SIDE ACCENTS */
/* ============================= */
.track-record {
    position: relative;
}

.track-record::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, var(--color-accent-primary) 50%, transparent 100%);
}

.track-record::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, var(--color-accent-primary) 50%, transparent 100%);
}

/* ============================= */
/* PROGRAM SHOWCASE WITH CORNER ACCENTS */
/* ============================= */
.program-showcase {
    position: relative;
}

.program-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--color-accent-primary);
    border-left: 3px solid var(--color-accent-primary);
}

.program-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--color-accent-primary);
    border-right: 3px solid var(--color-accent-primary);
}

/* ============================= */
/* ANIMATED GRADIENT UNDERLINES */
/* ============================= */
.section-title {
    position: relative;
    display: block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
}

/* ============================= */
/* VERTICAL TEXT ACCENTS */
/* ============================= */
.vertical-text-accent {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    z-index: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .track-record::before,
    .track-record::after,
    .program-showcase::before,
    .program-showcase::after {
        display: none;
    }

    .vertical-text-accent {
        display: none;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-hero {
    background: linear-gradient(135deg, rgba(212, 98, 47, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 98, 47, 0.2);
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.contact-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-card {
    background: var(--color-surface);
    border: 1px solid rgba(212, 98, 47, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--color-accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 98, 47, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 98, 47, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 98, 47, 0.3);
}

.contact-icon svg {
    color: var(--color-accent-primary);
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin: var(--space-2) 0;
}

.contact-detail a {
    color: var(--color-accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--color-accent-secondary);
    text-decoration: underline;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-4);
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.contact-social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(212, 98, 47, 0.1);
    border: 1px solid rgba(212, 98, 47, 0.3);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
}

.contact-social-button:hover {
    background: rgba(212, 98, 47, 0.2);
    border-color: var(--color-accent-primary);
    transform: translateX(5px);
}

.contact-social-button img {
    width: 24px;
    height: 24px;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(212, 98, 47, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 98, 47, 0.2);
}

.contact-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-6) auto;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 98, 47, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 98, 47, 0.5);
    background: linear-gradient(135deg, var(--color-accent-secondary), var(--color-accent-primary));
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-info-section {
        padding: 60px 20px;
    }
    
    .contact-cta {
        padding: 60px 20px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ======================================== */

/* Mobile-first improvements for all devices */
@media (max-width: 968px) {
    /* Hero section - better mobile text sizing */
    .hero-center h1 {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-location {
        font-size: 1.3rem;
    }

    /* Statement bar - stack on mobile */
    .statement-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .statement-divider {
        display: none;
    }

    /* Achievements grid - single column */
    .achievements-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .achievement-card {
        padding: 30px 20px;
    }

    .achievement-stat {
        font-size: 3.5rem;
    }

    /* Release grid - responsive columns */
    .release-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .release-card {
        padding: 25px 20px;
    }

    /* Studio page - better mobile sliders */
    .studio-hero-section {
        padding: 60px 20px;
        min-height: auto;
    }

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

    .studio-tagline,
    .studio-partnership {
        font-size: 1rem;
        padding: 0 10px;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slide-arrow.left-arrow {
        left: 5px;
    }

    .slide-arrow.right-arrow {
        right: 5px;
    }

    /* Studio features better spacing */
    .studio-features-container {
        padding: 20px 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .studio-feature-item {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    /* Program stats - stack vertically */
    .program-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-num {
        font-size: 3rem;
    }
}

/* Tablet breakpoint - 768px */
@media (max-width: 768px) {
    /* Reduce section padding on tablets */
    section {
        padding: 80px 20px;
    }

    /* Hero adjustments */
    .hero-center h1 {
        font-size: 3rem !important;
    }

    /* Track record header */
    .track-record-header h2 {
        font-size: 2rem;
    }

    .track-record-intro {
        font-size: 1rem;
    }

    /* Program header */
    .program-header h2 {
        font-size: 2.5rem;
    }

    /* Artist grid - 2 columns on tablet */
    .label-artists-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Media grid - 2 columns on tablet */
    .media-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small mobile - 576px and below */
@media (max-width: 576px) {
    /* Further reduce padding on small phones */
    section {
        padding: 60px 15px;
    }

    /* Hero - even smaller text */
    .hero-center h1 {
        font-size: 2.5rem !important;
        padding: 0 10px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-line {
        width: 80px;
    }

    /* Statement bar - smaller text */
    .statement-year,
    .statement-text {
        font-size: 0.8rem;
    }

    /* Achievement cards - more compact */
    .achievement-stat {
        font-size: 3rem;
    }

    .achievement-label {
        font-size: 1rem;
    }

    .achievement-card p {
        font-size: 0.9rem;
    }

    /* Release cards - compact */
    .release-card {
        padding: 20px 15px;
    }

    .release-month {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .release-card h3 {
        font-size: 1.3rem;
    }

    .release-card p {
        font-size: 0.9rem;
    }

    /* Studio page - optimize for small screens */
    .studio-hero-content h1 {
        font-size: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .tab-button {
        width: 100%;
        padding: 15px;
    }

    /* Arrows smaller on tiny screens */
    .slide-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Artist grid - single column on small phones */
    .label-artists-grid {
        grid-template-columns: 1fr !important;
    }

    /* Media grid - single column on small phones */
    .media-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact social buttons - stack */
    .contact-social-links {
        flex-direction: column;
        width: 100%;
    }

    .contact-social-button {
        width: 100%;
        justify-content: center;
    }

    /* Full CTA - better mobile */
    .full-cta-link {
        font-size: 1.5rem;
        padding: 30px 20px;
    }

    .cta-label {
        font-size: 1.2rem;
    }
}

/* Extra small devices - 480px and below */
@media (max-width: 480px) {
    /* Navbar - smaller */
    .navbar {
        height: 70px;
        padding: 10px 15px;
    }

    .logo-img {
        height: 40px;
        max-width: 120px;
    }

    .content {
        margin-top: 70px;
    }

    /* Hero - minimal */
    .hero-center h1 {
        font-size: 2rem !important;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    /* Section titles smaller */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Buttons full width on tiny screens */
    .cta-button {
        width: 100%;
        font-size: 0.95rem;
        padding: 15px 25px;
    }

    /* Studio features - compact */
    .studio-feature-item {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* Contact hero - smaller */
    .contact-hero {
        padding: 50px 15px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-card h2 {
        font-size: 1.3rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 968px) and (orientation: landscape) {
    /* Reduce hero height on landscape mobile */
    .fullscreen-hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px;
    }

    .studio-hero-section {
        min-height: auto;
        padding: 50px 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets for touch */
    .nav-links a,
    .tab-button,
    .slide-arrow,
    .cta-button,
    .contact-social-button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .achievement-card:hover,
    .release-card:hover,
    .contact-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(212, 98, 47, 0.2);
    }

    /* Make buttons more obvious */
    .cta-button,
    .tab-button {
        box-shadow: 0 2px 10px rgba(212, 98, 47, 0.3);
    }
}

/* High DPI displays - ensure crisp text */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ========================================
   ADDITIONAL MOBILE FIXES FOR SPECIFIC PAGES
   ======================================== */

/* Artist Rows - Mobile Stacking */
@media (max-width: 968px) {
    .artist-row {
        flex-direction: column !important;
        padding: 0 20px;
        gap: 30px;
        margin-bottom: 60px;
    }

    .artist-row.odd {
        flex-direction: column !important;
    }

    .artist-image,
    .artist-info {
        width: 100%;
    }

    .artist-info {
        padding: 30px 25px;
    }

    .artist-info h2 {
        font-size: 1.8rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .artist-row {
        padding: 0 15px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .artist-info {
        padding: 25px 20px;
    }

    .artist-info h2 {
        font-size: 1.5rem;
    }

    .artist-role {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* YouTube Grid - Mobile Responsive */
@media (max-width: 968px) {
    .youtube-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .youtube-embed {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .youtube-embed {
        height: 200px;
    }
}

/* Twitch Embed - Mobile Optimization */
@media (max-width: 768px) {
    .twitch-embed-wrapper {
        padding: 15px;
    }

    #twitch-embed {
        height: 300px !important;
    }
}

/* Streaming Buttons - Mobile Stack */
@media (max-width: 968px) {
    .streaming-links {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .streaming-button {
        flex-direction: column;
        padding: 20px 15px;
        gap: 8px;
    }

    .streaming-button img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .streaming-links {
        grid-template-columns: 1fr !important;
    }

    .streaming-button {
        padding: 18px 15px;
    }
}

/* Program Pages - Curriculum/Format Grids */
@media (max-width: 968px) {
    .curriculum-grid,
    .format-grid,
    .philosophy-grid,
    .impact-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .curriculum-card,
    .format-card,
    .philosophy-card,
    .impact-card {
        padding: 25px 20px;
    }

    .program-hero {
        padding: 80px 20px 60px;
    }

    .program-badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }
}

@media (max-width: 576px) {
    .curriculum-card h3,
    .format-card h3,
    .philosophy-card h3,
    .impact-card h3 {
        font-size: 1.3rem;
    }

    .curriculum-card ul li,
    .success-list li,
    .network-list li {
        font-size: 0.95rem;
    }

    .program-hero {
        padding: 60px 15px 50px;
    }
}

/* Team Grid - Mobile */
@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .team-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .team-card h3 {
        font-size: 1.4rem;
    }

    .team-role {
        font-size: 0.9rem;
    }
}

/* Infrastructure Grid - Mobile */
@media (max-width: 968px) {
    .infrastructure-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .infra-card {
        padding: 25px 20px;
    }
}

/* Media Stats Bar - Mobile */
@media (max-width: 768px) {
    .media-stats-bar {
        flex-direction: column;
        gap: 25px;
        padding: 40px 20px;
    }

    .media-stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Spotify Footer - Mobile */
@media (max-width: 768px) {
    .spotify-footer {
        bottom: 0;
        left: 0;
        right: 0;
    }

    .toggle-spotify {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .spotify-player iframe {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .toggle-spotify {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .toggle-spotify svg {
        width: 16px;
        height: 16px;
    }
}

/* Footer - Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
        font-size: 0.9rem;
    }

    .footer p {
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 25px 15px;
        font-size: 0.85rem;
    }
}

/* CTA Buttons - Mobile */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .cta-buttons .cta-button {
        max-width: 100%;
        font-size: 0.95rem;
    }
}

/* About Badge - Mobile */
@media (max-width: 576px) {
    .about-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
}

/* Values Grid - Mobile */
@media (max-width: 768px) {
    .team-grid,
    .values-grid {
        gap: 20px;
    }
}

/* Operations Grid - Mobile */
@media (max-width: 768px) {
    .operations-simple {
        gap: 20px;
    }

    .operation-simple-card {
        padding: 25px 20px;
    }

    .operation-simple-card h3 {
        font-size: 1.4rem;
    }
}

/* Content Blocks - Mobile Padding */
@media (max-width: 768px) {
    .content-block {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 0 15px;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }

    .content-block p {
        font-size: 0.95rem;
    }
}

/* Live Badge - Mobile */
@media (max-width: 576px) {
    .live-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Program Links - Mobile */
@media (max-width: 576px) {
    .program-links {
        flex-direction: column;
        gap: 12px;
    }

    .program-link {
        font-size: 0.95rem;
    }
}

/* Objectives Compact - Mobile */
@media (max-width: 768px) {
    .objectives-compact {
        gap: 12px;
    }

    .objective-compact {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .objectives-compact {
        flex-direction: column;
    }

    .objective-compact {
        width: 100%;
        text-align: center;
    }
}

/* Success List & Network List - Mobile */
@media (max-width: 576px) {
    .success-list,
    .network-list {
        padding-left: 20px;
    }

    .success-list li,
    .network-list li {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
}


/* About Bodega Section - SEO Content */
.about-bodega {
    background: var(--color-surface);
    padding: 80px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-bodega h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-primary);
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-text-primary);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.about-intro strong,
.about-text strong {
    color: #D4622F; /* Bodega orange - ensure visibility on dark background */
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-bodega h2 {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

