/* ==========================================================================
   Zwischen Kiddusch und Credo - Design System & Stylesheet
   ========================================================================== */

:root {
    /* Color Palette */
    --color-gold: #C5A059;
    --color-gold-dark: #8A6726;
    --color-gold-hover: #b58f48;
    --color-gold-light: #f7f1e5;
    --color-navy: #1B2A3A;
    --color-navy-dark: #121c27;
    --color-sand: #F7F4EF;
    --color-sand-dark: #EAE3D9;
    --color-olive: #4E6B56;
    --color-text-dark: #22252A;
    --color-text-muted: #5A626C;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(27, 42, 58, 0.08);
    --shadow-hover: 0 15px 40px rgba(27, 42, 58, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-sand);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Styled Content & Inline Links (Gold tone + Subtle ↗ Arrow) */
.performer-card a,
.program-card a,
.pillar-card a,
.event-details a,
.timeline-content a,
.section-lead a {
    color: var(--color-gold-dark);
    font-weight: normal;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(197, 160, 89, 0.4);
    transition: var(--transition);
}

.performer-card a:hover,
.program-card a:hover,
.pillar-card a:hover,
.event-details a:hover,
.timeline-content a:hover,
.section-lead a:hover {
    color: var(--color-gold-hover);
    text-decoration-color: var(--color-gold-hover);
}

/* Subtle Gold Arrow Indicator ↗ */
.performer-card a::after,
.program-card a::after,
.pillar-card a::after,
.event-details a::after,
.timeline-content a::after,
.section-lead a::after {
    content: "\00a0↗";
    font-size: 0.85em;
    color: var(--color-gold);
    display: inline-block;
    opacity: 0.85;
    transition: transform 0.2s ease, color 0.2s ease;
}

.performer-card a:hover::after,
.program-card a:hover::after,
.pillar-card a:hover::after,
.event-details a:hover::after,
.timeline-content a:hover::after,
.section-lead a:hover::after {
    transform: translate(2px, -2px);
    color: var(--color-gold-hover);
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #121c27, #1B2A3A, #283C52);
    color: var(--color-gold);
    padding: 8px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    /* Flex: text links, Sprachumschalter rechts */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#announcementBar {
    flex: 1;
    text-align: center;
}

/* Header & Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 244, 239, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 600;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
    position: relative;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link.highlight-link {
    color: var(--color-gold);
    font-weight: 600;
}

.view-toggle {
    display: flex;
    background: var(--color-sand-dark);
    padding: 4px;
    border-radius: 30px;
    gap: 4px;
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text-muted);
}

.toggle-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-navy);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('choir_hero_bg.jpg') center/cover no-repeat;
    color: var(--color-white);
    padding: 120px 0 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(18, 28, 39, 0.82) 0%, rgba(27, 42, 58, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 720px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

.btn-outline {
    border-color: var(--color-navy);
    color: var(--color-navy);
    background: transparent;
}

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

/* Keyfacts Bar */
.hero-keyfacts {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 30px;
    gap: 30px;
}

.keyfact-item {
    display: flex;
    flex-direction: column;
}

.keyfact-date {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.keyfact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.keyfact-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 750px;
}

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

.text-center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pillar-card.highlight-card {
    background: linear-gradient(145deg, #1B2A3A, #121c27);
    color: var(--color-white);
}

.pillar-card.highlight-card h3 {
    color: var(--color-gold);
}

.pillar-card.highlight-card p {
    color: rgba(255, 255, 255, 0.85);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.pillar-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Program Section */
.program-section {
    background: var(--color-sand-dark);
}

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

.program-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    position: relative;
    display: flex;
    flex-direction: column;
}

.premiere-card {
    border-top: 4px solid var(--color-gold);
}

.premiere-badge {
    background: var(--color-gold-light);
    color: var(--color-gold-hover);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    align-self: flex-start;
    margin-bottom: 16px;
}

.composer-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.work-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.work-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.work-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    border-top: 1px solid var(--color-sand-dark);
    padding-top: 16px;
}

/* Performers Showcase */
.performers-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}


.venues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
}
.venue-img {
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 0 !important;
}

.image-caption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 6px;
    font-style: italic;
    text-align: center;
}

.venue-credit {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    opacity: 0.8;
    text-align: center;
    margin-top: 3px;
    line-height: 1.18;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.venue-credit a {
    color: inherit;
    text-decoration: underline;
}

.performers-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.performer-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.performer-card--clickable {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.performer-card--clickable:hover,
.performer-card--clickable:focus-visible {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    outline: none;
}

.performer-card--clickable:focus-visible {
    box-shadow: var(--shadow-card), 0 0 0 3px var(--color-gold);
}

.performer-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.performer-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.performer-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    flex: 1;
}

.performer-more-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.performer-card--clickable:hover .performer-more-hint {
    color: var(--color-gold-hover);
    gap: 7px;
}

/* ─── Performer Bio Modal ─────────────────────────────────────────────────── */

.performer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.performer-modal.is-open {
    display: flex;
}

.performer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 39, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: modalFadeIn 0.25s ease forwards;
}

.performer-modal-dialog {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(27, 42, 58, 0.25);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    z-index: 1;
}

.performer-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: var(--color-sand);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    line-height: 1;
}

.performer-modal-close:hover {
    background: var(--color-gold-light);
    color: var(--color-gold-hover);
}

.performer-modal-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}

.performer-modal-image-col {
    background: var(--color-navy);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 20px 28px;
    gap: 16px;
}

.performer-modal-photo {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.performer-modal-image-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.performer-modal-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-gold-dark);
    text-align: center;
    font-family: var(--font-body);
}

.performer-modal-caption {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.35;
    font-family: var(--font-body);
    margin-bottom: 12px;
}

.performer-modal-content-col {
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.performer-modal-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.15;
    margin: 0;
}

.performer-modal-bio {
    font-size: 0.91rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.performer-modal-bio p {
    margin: 0;
}

.performer-modal-bio strong {
    color: var(--color-navy);
    font-weight: 600;
}

.performer-modal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.performer-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    background: var(--color-sand);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--color-sand-dark);
}

.performer-modal-link:hover {
    background: var(--color-gold-light);
    color: var(--color-gold-hover);
    border-color: rgba(197, 160, 89, 0.4);
}

@media (max-width: 620px) {
    .performer-modal-inner {
        grid-template-columns: 1fr;
    }

    .performer-modal-image-col {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        flex-direction: row;
        gap: 20px;
        padding: 24px 20px;
    }

    .performer-modal-photo {
        width: 90px;
        height: 110px;
    }

    .performer-modal-image-info {
        align-items: flex-start;
    }

    .performer-modal-role,
    .performer-modal-caption {
        text-align: left;
    }

    .performer-modal-links {
        justify-content: flex-start;
    }

    .performer-modal-content-col {
        padding: 24px 20px;
    }

    .performer-modal-name {
        font-size: 1.55rem;
    }
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


/* Dates & Events Grid */
.dates-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    background: var(--color-white);
    padding: 24px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    gap: 30px;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(6px);
}

.event-card.highlight-event {
    border-left: 6px solid var(--color-gold);
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-sand);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
}

.event-date-badge .day {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
}

.event-date-badge .time {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.event-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;

}

.event-venue {
    font-size: 1.6rem;
    margin: 4px 0;
}

.event-venue-title-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(27, 42, 58, 0.3);
    transition: all 0.2s ease;
}

.event-venue-title-link:hover {
    color: var(--color-gold);
    text-decoration-color: var(--color-gold);
}

.event-location {
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.event-info {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.event-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-subtle-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: underline;
    text-decoration-color: rgba(27, 42, 58, 0.35);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-subtle-link:hover {
    color: var(--color-gold);
    text-decoration-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.08);
}

/* Pay-What-You-Want Interactive Section */
.pwyw-section {
    background: linear-gradient(135deg, #1B2A3A, #121c27);
    color: var(--color-white);
}

.pwyw-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.gold-tag {
    color: var(--color-gold-dark) !important;
}

.pwyw-card-wrapper h2 {
    color: var(--color-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pwyw-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.pwyw-interactive {
    background: rgba(0, 0, 0, 0.2);
    padding: 35px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.slider-label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

input[type="range"] {
    flex-grow: 1;
    accent-color: var(--color-gold);
    height: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.slider-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    min-width: 100px;
}

.impact-display {
    background: rgba(197, 160, 89, 0.15);
    border-left: 4px solid var(--color-gold);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: left;
    font-size: 0.95rem;
}

.pwyw-notice {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Partners & Sponsors Section */
.partners-section {
    background: var(--color-sand);
    border-top: 1px solid var(--color-sand-dark);
    padding: 35px 0;
}

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

@media (max-width: 850px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.partners-card {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partners-card-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--color-gold-light);
}

.partners-card-header .section-tag {
    margin-bottom: 2px;
    font-size: 0.72rem;
}

.partners-card-title {
    font-size: 1.35rem;
    color: var(--color-navy);
}

.partner-group {
    margin-bottom: 10px;
}

.partner-group:last-child {
    margin-bottom: 0;
}

.partner-group-title {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.partner-divider {
    height: 1px;
    background: var(--color-sand-dark);
    margin: 10px 0 12px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 10px;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-item:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-subtle);
}

.partner-logo-wrapper {
    width: 60px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.logo-wrapper-featured {
    width: 220px;
    max-width: 100%;
    height: 85px;
    padding: 10px;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    color: var(--color-gold-hover);
    background: var(--color-gold-light);
    padding: 3px 6px;
    border-radius: 3px;
}

.partner-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-navy);
    line-height: 1.25;
}

.partner-subgrid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sponsor-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    padding: 8px 4px;
}

.sponsor-item-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(197, 160, 89, 0.25);
    width: 100%;
    transition: var(--transition);
}

.sponsor-item-featured:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-subtle);
}

.sponsor-item-featured .partner-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-navy);
}




/* Footer */
.site-footer {
    background: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-links h4, .footer-legal h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-legal p {
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .performers-showcase { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .event-card { grid-template-columns: 1fr; gap: 15px; text-align: center; }
    .event-date-badge { width: 100%; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-hamburger { display: block; }
    .hero-keyfacts { flex-direction: column; gap: 15px; }
    .keyfact-divider { display: none; }
    .pwyw-card-wrapper { padding: 30px 20px; }
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */

.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px 5px 9px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.40);
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.lang-trigger[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--color-gold);
}

.lang-trigger[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

.lang-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.75;
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

/* Dropdown list – display:none is the most reliable hiding method */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--color-navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
    padding: 6px 0;
    list-style: none;
    margin: 0;
    z-index: 9999;
}

.lang-dropdown--open {
    display: block;
    animation: langDropIn 0.18s ease forwards;
}

@keyframes langDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}


.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    outline: none;
}

.lang-option:hover,
.lang-option:focus-visible {
    background: rgba(197, 160, 89, 0.12);
    color: var(--color-white);
}

.lang-option:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -2px;
}

.lang-option--active {
    color: var(--color-gold-dark);
    font-weight: 600;
    background: rgba(197, 160, 89, 0.08);
}

.lang-option--active::after {
    content: '✓';
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.75;
}

.lang-option-flag {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Responsive: on small screens, hide label, show only flag */
@media (max-width: 520px) {
    .lang-trigger .lang-label { display: none; }
    .lang-trigger { padding: 6px 9px; }
}

/* ==========================================================================
   Leichte Sprache – Typografie-Anpassungen
   (body.easy-language)
   ========================================================================== */

body.easy-language {
    font-size: 1.05rem;
    line-height: 1.85;
    letter-spacing: 0.015em;
}

body.easy-language p,
body.easy-language .section-lead,
body.easy-language .work-desc,
body.easy-language .event-info,
body.easy-language .pwyw-lead,
body.easy-language .performer-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 65ch; /* Optimale Zeilenlänge für Leichte Sprache */
}

body.easy-language h1,
body.easy-language h2,
body.easy-language h3,
body.easy-language h4 {
    line-height: 1.35;
    letter-spacing: 0;
}

body.easy-language .work-title {
    font-size: 1rem;
    line-height: 1.5;
}

