/* Swiss Alps Festival - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a1628;
    --secondary-blue: #1a2c4a;
    --tertiary-blue: #2a3c5a;
    --gold: #d4af37;
    --light-gold: #f4cf67;
    --light-blue: #8ec5fc;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-blue);
    color: white;
    overflow-x: hidden;
}

/* Skip Navigation for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--primary-blue);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

/* Hero Section with Photorealistic Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Photorealistic Mountain Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom,
            rgba(10, 22, 40, 0.1) 0%,
            rgba(10, 22, 40, 0.4) 50%,
            rgba(10, 22, 40, 0.8) 100%),
        url('background.jpg');
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}

/* Realistic Stars */
.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 15%, white, transparent);
    background-size: 200% 200%;
    background-repeat: repeat;
    opacity: 0.6;
    animation: twinkleStars 4s ease-in-out infinite;
}

@keyframes twinkleStars {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            transparent 0%,
            rgba(10, 22, 40, 0.3) 70%,
            rgba(10, 22, 40, 0.5) 100%);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin: auto 0;
    padding: clamp(80px, 10vh, 110px) 20px clamp(20px, 4vh, 60px) 20px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: auto;
    height: clamp(80px, 15vh, 140px);
    margin: 0 auto 10px;
    /* Top margin removed, handled by padding on hero-content */
    max-width: 100%;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.9));
    animation: fadeIn 2s ease-out;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1 {
    font-size: clamp(36px, 7vh, 60px);
    font-weight: 700;
    letter-spacing: clamp(6px, 1vh, 12px);
    margin-bottom: clamp(5px, 1vh, 10px);
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(10, 22, 40, 0.8);
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3.5vh, 28px);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto clamp(10px, 2vh, 20px);
    line-height: 1.5;
    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(10, 22, 40, 0.7);
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.dates {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vh, 48px);
    font-style: italic;
    margin: clamp(5px, 1.5vh, 10px) 0;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(10, 22, 40, 0.8);
    animation: fadeInUp 1.5s ease-out 0.9s both;
}

.gold-line {
    width: 300px;
    height: 3px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--gold) 50%,
            transparent 100%);
    margin: clamp(8px, 1.5vh, 15px) auto;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 2px 15px rgba(212, 175, 55, 0.6);
    animation: expandWidth 1.5s ease-out 1.2s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 300px;
    }
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 3vh, 24px);
    font-style: italic;
    margin-top: clamp(10px, 2vh, 20px);
    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(10, 22, 40, 0.7);
    animation: fadeInUp 1.5s ease-out 1.5s both;
}



.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
    animation: fadeInDown 1.5s ease-out;
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

nav a:hover::after {
    width: 100%;
}

/* Sections with Photorealistic Backgrounds */
section {
    padding: 120px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    text-align: center;
    color: var(--gold);
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* About Section - Mountain Texture */
#about {
    background:
        linear-gradient(to bottom,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(26, 44, 74, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="mountainPattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M 0 100 L 50 70 L 100 90 L 150 60 L 200 80 L 200 200 L 0 200 Z" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="1200" height="800" fill="%231a2c4a"/><rect width="1200" height="800" fill="url(%23mountainPattern)"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.about-content p {
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Programme Section - Night Sky Texture */
#programme {
    background:
        linear-gradient(to bottom,
            rgba(26, 44, 74, 0.95) 0%,
            rgba(42, 60, 90, 0.95) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    background-size: cover;
}

.venue-info {
    text-align: center;
    margin-bottom: 60px;
}

.venue-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--gold);
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(212, 175, 55, 0.4);
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.day-card {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.8);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.day-card:hover::before {
    transform: scaleX(1);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.day-number {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--primary-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow:
        0 4px 15px rgba(212, 175, 55, 0.6),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.day-info h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.day-info p {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.concert {
    margin-bottom: 20px;
    position: relative;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.concert-read-more {
    display: block;
    font-size: 11px;
    font-style: italic;
    color: var(--gold);
    margin-top: 10px;
    text-align: right;
    transition: all 0.3s ease;
}

.concert:hover .concert-read-more {
    color: var(--light-gold);
    transform: translateX(5px);
}

.concert:last-child {
    margin-bottom: 0;
}

.concert-time {
    color: var(--light-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.concert-p.subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    margin-bottom: clamp(10px, 2vh, 20px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.concert-piece {
    font-size: 15px;
    line-height: 1.6;
    margin: 5px 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

/* All program pieces highlight together when hovering program area */
.concert:hover:not(:has(.concert-artists:hover)) .concert-piece {
    color: var(--light-gold);
}

.concert:hover:not(:has(.concert-artists:hover)) .composer {
    color: var(--gold);
}

.composer {
    color: var(--light-blue);
    font-style: italic;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Artists Section */
#artistes {
    background:
        linear-gradient(to bottom,
            rgba(42, 60, 90, 0.95) 0%,
            rgba(26, 44, 74, 0.95) 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.artist-card {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.artist-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    color: var(--primary-blue);
}

.artist-photo svg {
    width: 80%;
    height: 80%;
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.artist-role {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.artist-title {
    font-size: 14px;
    font-style: italic;
    color: var(--light-blue);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.artist-bio {
    text-align: left;
    font-size: 15px;
    line-height: 1.7;
}

.artist-bio p {
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.artist-bio p:last-child {
    margin-bottom: 0;
}

.bio-toggle-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.bio-toggle-link:hover {
    color: var(--light-gold);
    transform: translateX(3px);
}

.artist-bio-full {
    margin-top: 15px;
}


/* Concert Artists Info */
.concert-artists {
    font-size: 13px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-blue);
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.concert-artists:hover {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.concert-artists strong {
    color: var(--gold);
}

/* Festival Story Section */
#histoire {
    background:
        linear-gradient(to bottom,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(26, 44, 74, 0.95) 100%);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.story-intro p {
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.story-intro em {
    color: var(--gold);
    font-style: italic;
}

.story-hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: block;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    object-fit: cover;
}

.story-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.story-highlight,
.story-cta {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.story-highlight:hover,
.story-cta:hover {
    border-color: var(--gold);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.story-highlight h3,
.story-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.story-highlight p,
.story-cta p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.story-highlight p:last-child {
    margin-bottom: 0;
}

.benefits-list {
    margin: 30px 0;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.benefits-list h4 {
    font-size: 18px;
    color: var(--light-gold);
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.benefits-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
}

.story-finale {
    font-style: italic;
    font-size: 17px;
    color: var(--light-gold);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Info Section - Atmospheric Background */
#info {
    background:
        linear-gradient(to bottom,
            rgba(42, 60, 90, 0.95) 0%,
            rgba(10, 22, 40, 0.95) 100%),
        radial-gradient(ellipse at center,
            rgba(142, 197, 252, 0.1) 0%,
            transparent 70%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 100%);
    border-color: var(--gold);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.info-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.5));
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.info-card a {
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}


/* Partners Section */
#partners {
    background:
        linear-gradient(to bottom,
            rgba(26, 44, 74, 0.95) 0%,
            rgba(26, 44, 74, 0.95) 100%);
    padding: 80px 20px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.partner:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.partner-logo {
    width: 70px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Footer */
footer {
    background:
        linear-gradient(to bottom,
            rgba(10, 22, 40, 0.98) 0%,
            rgba(10, 22, 40, 1) 100%);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--gold);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.footer-section a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 24px;
    }

    .dates {
        font-size: 48px;
    }

    .tagline {
        font-size: 20px;
    }

    h2 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    nav {
        display: flex;
        justify-content: flex-end;
        padding: 20px 30px;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: fit-content;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        text-align: right;
        transition: right 0.4s ease;
        padding: 20px 30px;
        margin: 0;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .programme-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 40px 30px;
    }

    .logo {
        height: 120px;
    }

    section {
        padding: 60px 15px;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .logo {
        height: 80px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .dates {
        font-size: 32px;
        margin: 10px 0;
    }

    .tagline {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .gold-line {
        margin: 10px auto;
        height: 2px;
    }

    .hero-content {
        padding-top: 20px;
    }
}

/* Scroll Reveal Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeInModal 0.4s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 44, 74, 0.95), rgba(10, 22, 40, 0.98));
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--gold);
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(20px);
    animation: slideUpModal 0.4s ease forwards;
}

@keyframes slideUpModal {
    to {
        transform: translateY(0);
    }
}

.close-btn {
    color: var(--light-gold);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--gold);
    text-decoration: none;
}

.musicologist-note h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 15px;
}

.musicologist-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
}

.musicologist-text::first-letter {
    font-size: 3.5em;
    float: left;
    margin-right: 10px;
    color: var(--gold);
    line-height: 0.8;
}

.signature {
    text-align: right;
    margin-top: 20px;
    font-style: italic;
    color: var(--light-blue);
    font-size: 14px;
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
    }
}

/* Signup Forms */
.story-cta {
    margin-top: 60px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--light-gold);
    margin-bottom: 30px;
    font-size: 18px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 22, 40, 0.6);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(10, 22, 40, 0.8);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-group input {
    width: auto;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--primary-blue);
    border: none;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.form-disclaimer {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 15px;
}

/* Footer Signup */
.footer-signup {
    display: flex;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    max-width: 300px;
}

.footer-signup input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.footer-signup input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.footer-signup button {
    background: var(--gold);
    border: none;
    color: var(--primary-blue);
    padding: 0 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-signup button:hover {
    background: var(--light-gold);
}

.footer-signup button svg {
    width: 18px;
    height: 18px;
}

/* Accessibility utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Support Buttons */
.nav-btn-support {
    background: var(--gold);
    color: var(--primary-blue) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.nav-btn-support:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.support-action {
    margin-top: 30px;
    text-align: center;
}

.btn-support-large {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-support-large:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .nav-btn-support {
        display: inline-block;
        margin: 10px 0;
        margin-left: 0;
    }
}

/* Calendar Button Styles - Added to match "Read More" link */
.concert-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.concert-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: color 0.3s ease;
}

.concert:hover .concert-read-more {
    color: var(--light-gold);
}

.btn-calendar {
    background: transparent;
    border: none;
    color: var(--gold) !important;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
    box-shadow: none;
}

.btn-calendar:hover {
    background: transparent;
    color: var(--light-gold) !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    transform: translateY(0);
}

/* Hero Countdown */
.hero-countdown {
    margin: clamp(10px, 1.5vh, 15px) 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    min-height: 80px;
    /* prevents layout shift while loading */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 3em;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease;
}

@media (max-width: 768px) {
    .hero-countdown {
        gap: 15px;
    }

    .countdown-number {
        font-size: 2em;
    }

    .countdown-label {
        font-size: 0.7em;
    }
}

/* Social Sharing Buttons (Hero) */
.share-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: clamp(10px, 1.5vh, 15px) 0;
    animation: fadeInUp 1.5s ease-out 1.5s both;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.share-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Mailchimp Form Overrides */
#mc_embed_signup {
    background: transparent;
    clear: left;
    font-family: inherit;
    width: 100%;
}

#mc_embed_signup .mc-field-group {
    width: 100%;
}

#mce-responses {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

#mce-error-response {
    color: #ff6b6b;
    margin-bottom: 15px;
}

#mce-success-response {
    color: #51cf66;
    margin-bottom: 15px;
}

.share-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

#copy-link-btn svg {
    stroke: currentColor;
}

/* Footer Social Links */
.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.social-icon {
    width: 20px;
    height: 20px;
}