/* ==========================================================================
   CSS Variables & Global Resets
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-maroon: #701743;
    --clr-maroon-dark: #4a0b27;
    --clr-gold: #d4af37;
    --clr-gold-light: #f3dca1;
    --clr-ivory: #faf7f2;
    --clr-sandalwood: #e3d2bf;
    --clr-bronze: #a37250;
    --clr-black: #1a1a1a;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-cinzel: 'Cinzel', serif;

    /* Spacing & Utilities */
    --section-pad-y: 6rem;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-ivory);
    color: var(--clr-black);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==========================================================================
   Typography & Reusable Classes
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-maroon);
}

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

.text-white {
    color: var(--clr-ivory);
}

.mt-2 {
    margin-top: 2rem;
}

/* Separators */
.decorative-separator {
    width: 60px;
    height: 3px;
    background-color: var(--clr-maroon);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.gold-sep {
    background-color: var(--clr-gold);
}

.title-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
    display: block;
}

.center-margin {
    margin: 1.5rem auto;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* SPA Pages */
@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 769px) and (max-width: 1300px) {
    .guru-portrait-frame img {
        display: block;
        margin: 0 auto;
        /* width: 100%; */
        max-width: 900px;
        max-height: 1000px;
        /* object-fit: cover; */
    }
}

.page {
    display: none;
    min-height: auto;
    overflow-y: auto;
}

.page.active {
    display: block;
    animation: fadeInPage 0.5s ease forwards;
}

.hero.page.active {
    display: flex;
    animation: fadeInPage 0.5s ease forwards;
}

.section {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.section-dark {
    background-color: var(--clr-maroon);
    color: var(--clr-sandalwood);
}

.section-dark h2,
.section-dark h3 {
    color: var(--clr-gold);
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-cinzel);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-maroon-dark);
}

.btn-primary:hover {
    background-color: var(--clr-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.btn-secondary:hover {
    background-color: var(--clr-gold);
    color: var(--clr-maroon-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-maroon);
    color: var(--clr-maroon);
    padding: 0.8rem 1.5rem;
}

.btn-outline:hover {
    background-color: var(--clr-maroon);
    color: var(--clr-ivory);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    /* By default on top of hero - so text is white */
    background-color: transparent;
}

nav.scrolled {
    background-color: var(--clr-ivory);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

nav.nav-active {
    background-color: var(--clr-ivory);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

nav.nav-active .nav-logo {
    color: var(--clr-maroon);
}

nav.nav-active .hamburger span {
    background-color: var(--clr-maroon);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--clr-ivory);
    letter-spacing: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

nav.scrolled .nav-logo {
    color: var(--clr-maroon);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin-left: auto;
}

.nav-links li a {
    text-decoration: none;
    color: var(--clr-ivory);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

nav.scrolled .nav-links li a {
    color: var(--clr-black);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-gold);
    transition: var(--transition-smooth);
}

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

.nav-links li a:hover {
    color: var(--clr-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-ivory);
    transition: 0.3s;
}

nav.scrolled .hamburger span {
    background-color: var(--clr-maroon);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: zoomOutBg 20s infinite alternate linear;
}

@media (max-width: 768px) {
    .hero-bg {
        /* On mobile, center top usually prevents heads from getting cut off */
        background-position: center top;
    }
}

@keyframes zoomOutBg {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 21, 37, 0.4), rgba(26, 26, 26, 0.8));
    z-index: -1;
}

.hero-content {
    color: var(--clr-ivory);
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-subtitle {
    font-family: var(--font-cinzel);
    letter-spacing: 3px;
    font-size: 1rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-ivory);
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: var(--clr-gold);
    margin: 0 auto 2rem auto;
}

.hero-invitation {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-date {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--clr-gold);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Make hero buttons equal width and height, centered */
.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 220px;
    padding: 0 1rem;
}

/* Responsive sizing: keep equal visual weight on small screens */
@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.75rem;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 45%;
        height: 52px;
        padding: 0 0.6rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

.scroll-indicator {
    display: none;
    /* Hidden since we use pages instead of scroll */
}

.mouse {
    width: 20px;
    height: 30px;
    border: 2px solid var(--clr-ivory);
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background-color: var(--clr-ivory);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

/* ==========================================================================
   Event Day Section (Timeline & Details)
   ========================================================================== */
.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.event-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.event-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-cinzel);
    border-bottom: 1px solid rgba(74, 21, 37, 0.1);
    padding-bottom: 1rem;
}

.timeline {
    list-style: none;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--clr-gold);
}

.timeline li {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2.5rem;
}

.timeline li:last-child {
    margin-bottom: 0;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--clr-gold);
    border: 3px solid #fff;
}

.timeline .time {
    display: block;
    font-family: var(--font-cinzel);
    color: var(--clr-maroon);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline .content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--clr-black);
}

.timeline .content p {
    font-size: 0.95rem;
    color: #666;
}

.venue-details h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--clr-black);
}

.venue-details p {
    margin-bottom: 2rem;
    color: #555;
}

/* ==========================================================================
   Image Wrappers & Shadows
   ========================================================================== */
.box-shadow-gold img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 15px 15px 0 var(--clr-gold);
    transition: var(--transition-smooth);
}

.box-shadow-gold:hover img {
    transform: translate(5px, 5px);
    box-shadow: 10px 10px 0 var(--clr-gold);
}

/* ==========================================================================
   Journey & School (Alternating layouts)
   ========================================================================== */
.journey-content,
.school-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


.journey-image img,
.school-image img {
    width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    border-radius: 4px;
    background: transparent;
    display: block;
}

.school-logo {
    width: 150px !important;
    height: auto !important;
    object-fit: contain !important;
    margin-bottom: 1.5rem;
    display: block;
}

.journey-text h3,
.school-text h3,
.guru-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.journey-text p,
.school-text p,
.guru-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================================================
   Guru Section
   ========================================================================== */
.guru-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guru-text h4 {
    font-family: var(--font-cinzel);
    color: var(--clr-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.guru-portrait-wrapper {
    position: relative;
    padding: 2rem;
}

.guru-portrait-wrapper::before {
    display: none;
}

.guru-portrait-frame {
    position: relative;
    z-index: 2;
    height: 750px;
}

.guru-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .guru-portrait-frame {
        height: 920px;
        width: 500px;
    }
}

/* ==========================================================================
   Livestream Section (Cinematic)
   ========================================================================== */
.cinematic-bg {
    background-color: var(--clr-black);
    position: relative;
    color: var(--clr-ivory);
}

/* Let's reuse hero image vaguely but highly darkened */
.cinematic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('dance/dance9.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
    filter: grayscale(80%) sepia(20%);
}

.livestream-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0.6));
    z-index: 2;
}

.relative-z {
    position: relative;
    z-index: 3;
}

.cinematic-bg .section-title h2,
.cinematic-bg .section-title p {
    color: var(--clr-ivory);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.cd-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    min-width: 120px;
    backdrop-filter: blur(5px);
}

.cd-box span {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cd-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.live-subtitle {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--clr-sandalwood);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
    padding-bottom: 2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(74, 11, 39, 0.4), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Removed fade-in-section to fix SPA visibility issues */

/* Staggered on load for hero elements */
.slide-up {
    transform: translateY(30px);
    opacity: 0;
}

.slide-up.fade-in {
    animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {

    .event-grid,
    .journey-content,
    .school-layout,
    .guru-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        column-count: 2;
    }

    .journey-image,
    .school-image,
    .guru-portrait-wrapper {
        order: -1;
        /* image on top on mobile */
    }

    .journey-image,
    .school-image,
    .guru-portrait-frame {
        height: auto;
    }

    .school-image {
        align-items: center;
        text-align: center;
    }

    .school-logo {
        margin: 0 auto 1.5rem auto !important;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1300px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--clr-ivory);
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.4s ease-in-out;
        margin-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 999;
        
        /* Premium custom scrollbar styling */
        scrollbar-width: thin;
        scrollbar-color: var(--clr-gold) transparent;
    }

    .nav-links::-webkit-scrollbar {
        width: 6px;
    }

    .nav-links::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .nav-links::-webkit-scrollbar-thumb {
        background-color: var(--clr-gold);
        border-radius: 3px;
    }

    .nav-links::-webkit-scrollbar-thumb:hover {
        background-color: var(--clr-bronze);
    }

    .nav-links.active {
        max-height: 80vh;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        padding: 1.15rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li a {
        color: var(--clr-maroon);
        font-weight: 500;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    /* Premium Hamburger Animation to "X" */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    :root {
        --section-pad-y: 5rem;
    }

    .section {
        padding: var(--section-pad-y) 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .event-card {
        padding: 1.25rem;
    }

    .timeline .content h4 {
        font-size: 1rem;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

    .nav-container {
        width: 95%;
        padding: 0 0.5rem;
    }

    /* Mobile menu improvements for small screens */
    .nav-links.active {
        max-height: 60vh;
    }

    .nav-links li {
        padding: 0.85rem 0;
    }

    .nav-links li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .countdown {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-width: 450px;
        margin: 2rem auto;
    }

    .cd-box {
        min-width: unset;
        padding: 0.75rem 0.25rem;
    }

    .cd-box span {
        font-size: 1.75rem;
    }

    .cd-box p {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .school-layout,
    .journey-content {
        gap: 2rem;
    }

    .school-image,
    .journey-image {
        height: auto;
    }

    .school-text,
    .journey-text {
        padding-top: 1rem;
    }

    /* Mobile menu improvements */
    .nav-links.active {
        max-height: 70vh;
    }

    .nav-links li {
        padding: 1rem 0;
    }
}

@media (max-width: 1400px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links li a {
        font-size: 0.8rem;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .menu-logo {
        height: 35px;
    }
}

/* ==========================================================================
   Artists Page Styles
   ========================================================================== */

/* Content Wrapper */
.content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 0;
    min-height: 100vh;
}

.artists-page {
    background-color: var(--clr-ivory);
    padding-top: 120px;
}

/* Section Title */
.section-title {
    margin-bottom: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-maroon);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--clr-bronze);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Artists Grid Layout */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Artist Card */
.artist-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(112, 23, 67, 0.08);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(112, 23, 67, 0.15);
}

/* Artist Image Container */
.artist-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--clr-sandalwood);
    position: relative;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-smooth);
}

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

/* Artist Content */
.artist-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artist-content h2 {
    font-size: 1.6rem;
    color: var(--clr-maroon);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.artist-role {
    font-size: 0.95rem;
    color: var(--clr-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-family: var(--font-cinzel);
}

.artist-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clr-black);
    margin-bottom: 1.2rem;
    text-align: justify;
}

.artist-highlights {
    font-size: 0.9rem;
    color: var(--clr-bronze);
    line-height: 1.7;
    border-left: 3px solid var(--clr-gold);
    padding-left: 1.2rem;
    font-style: italic;
    margin-top: auto;
}

/* Awards List */
.artist-awards {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.artist-awards li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: var(--clr-black);
}

.artist-awards li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--clr-gold);
    font-weight: bold;
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .content-wrapper {
        padding: 4rem 0;
    }

    .section-title h1 {
        font-size: 2.5rem;
    }

    .artist-content {
        padding: 2rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .artists-page {
        padding-top: 100px;
    }

    .content-wrapper {
        width: 95%;
        padding: 3rem 0;
    }

    .section-title h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .decorative-separator {
        width: 50px;
    }

    .artists-grid {
        gap: 2rem;
    }

    .artist-content {
        padding: 1.5rem;
    }

    .artist-content h2 {
        font-size: 1.4rem;
    }

    .artist-bio {
        font-size: 0.9rem;
    }

    .artist-highlights {
        font-size: 0.85rem;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .artists-page {
        padding-top: 80px;
    }

    .content-wrapper {
        width: 100%;
        padding: 2rem 1rem;
    }

    .section-title h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .artists-grid {
        gap: 1.5rem;
    }

    .artist-content {
        padding: 1.2rem;
    }

    .artist-content h2 {
        font-size: 1.2rem;
    }

    .artist-role {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Program Page Styles
   ========================================================================== */
.program-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: rgba(112, 23, 67, 0.05);
    border-left: 4px solid var(--clr-gold);
    border-radius: 4px;
}

.program-notice {
    font-size: 1.05rem;
    color: var(--clr-maroon);
    font-style: italic;
    margin: 0;
    line-height: 1.8;
}

.program-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(112, 23, 67, 0.02) 100%);
    border-radius: 8px;
    border-left: 5px solid var(--clr-gold);
    transition: var(--transition-smooth);
}

.program-item:hover {
    box-shadow: 0 8px 24px rgba(112, 23, 67, 0.08);
    transform: translateY(-4px);
}

.program-item-header {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.program-item-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--clr-maroon);
    letter-spacing: 0.5px;
    flex: 1;
}

.program-divider {
    flex-shrink: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), transparent);
    border-radius: 2px;
}

.program-item-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.program-item-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-black);
    margin: 0;
}

.program-details {
    padding-top: 1rem;
    border-top: 1px solid rgba(112, 23, 67, 0.1);
    font-size: 0.95rem;
    color: var(--clr-bronze);
    font-family: var(--font-cinzel);
    letter-spacing: 0.3px;
}

.program-details strong {
    color: var(--clr-maroon);
    font-weight: 600;
}

/* Responsive Design - Program Page Tablets */
@media (max-width: 1024px) {
    .program-item {
        padding: 2rem;
    }

    .program-item-header h3 {
        font-size: 1.6rem;
    }

    .program-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-divider {
        width: 60px;
    }
}

/* Responsive Design - Program Page Mobile */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

    .program-intro {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .program-notice {
        font-size: 1rem;
    }

    .program-items {
        gap: 2rem;
    }

    .program-item {
        padding: 1.5rem;
        border-left-width: 4px;
    }

    .program-item-header h3 {
        font-size: 1.4rem;
    }

    .program-item-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .program-details {
        font-size: 0.9rem;
    }
}

/* Responsive Design - Program Page Small Mobile */
@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .program-intro {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }

    .program-notice {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .program-items {
        gap: 1.5rem;
    }

    .program-item {
        padding: 1.2rem;
        border-radius: 4px;
    }

    .program-item-header {
        gap: 1rem;
    }

    .program-item-header h3 {
        font-size: 1.2rem;
    }

    .program-divider {
        width: 30px;
        height: 2px;
    }

    .program-item-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .program-details {
        font-size: 0.85rem;
        padding-top: 0.8rem;
    }
}

    .artist-bio {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .artist-highlights {
        font-size: 0.8rem;
        padding-left: 1rem;
    }
}
