/* ==========================================================================
   St Wendreda's Church Aid - 12-Hour Sing-A-Thon
   Victorian Gold & Midnight Navy Design System
   ========================================================================== */

:root {
    --bg-dark: #03070f;
    --bg-surface: #071326;
    --bg-surface-elevated: #0b1c38;
    --bg-card: rgba(11, 28, 56, 0.85);
    
    --gold-light: #FFF6CF;
    --gold-main: #D4AF37;
    --gold-dark: #9A7B1C;
    --gold-deep: #5A4305;
    --gold-gradient: linear-gradient(135deg, #FFF6CF 0%, #E5C365 35%, #D4AF37 55%, #9E7412 85%, #F5E193 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(255, 246, 207, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    --text-gold: #F5E193;

    --border-gold: rgba(212, 175, 55, 0.5);
    --border-gold-bright: rgba(212, 175, 55, 0.9);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.18);
    --shadow-deep: 0 20px 45px rgba(0, 0, 0, 0.7);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --container-max: 1140px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    background-image: 
        radial-gradient(circle at 50% 0%, #11284d 0%, transparent 60%),
        radial-gradient(circle at 10% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

.gold-frame {
    border: 1px solid var(--border-gold);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1), var(--shadow-deep);
    position: relative;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation Bar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 7, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.brand-logo-emblem {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03070f;
    font-size: 20px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

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

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-main);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 24px);
    list-style: none;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: clamp(13px, 1.05vw, 14.5px);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 2px;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

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

.nav-link.active::after, .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.nav-cta {
    background: var(--gold-gradient);
    color: #040914 !important;
    padding: 8px 18px !important;
    border-radius: 30px;
    font-weight: 800 !important;
    white-space: nowrap;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--gold-main);
    font-size: 26px;
}

/* Page Layout */
main {
    flex: 1;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 65px 0;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 60px 0 40px 0;
    text-align: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title-top {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-title-main {
    font-family: var(--font-body);
    font-size: clamp(34px, 6.5vw, 68px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 12px;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(24px, 4vw, 40px);
    font-style: italic;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-music-summary {
    max-width: 820px;
    margin: 0 auto 30px auto;
    background: rgba(7, 19, 38, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 14px 26px;
    font-size: clamp(14.5px, 2vw, 16.5px);
    color: var(--text-secondary);
    line-height: 1.6;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.08);
}

.hero-music-summary strong {
    color: var(--gold-light);
    font-weight: 700;
}

.church-hero-banner {
    position: relative;
    max-width: 960px;
    margin: 20px auto 40px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--gold-main);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.church-hero-banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.church-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 7, 15, 0.95) 0%, rgba(3, 7, 15, 0.4) 50%, transparent 100%);
    padding: 30px 20px 18px 20px;
    text-align: center;
}

.church-hero-caption {
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    text-transform: uppercase;
}

/* Compact Top Countdown Strip */
.top-countdown-strip {
    background: linear-gradient(90deg, rgba(3, 7, 15, 0.98) 0%, rgba(14, 32, 64, 0.95) 50%, rgba(3, 7, 15, 0.98) 100%);
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 900;
}

.top-countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: center;
}

.top-countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    box-shadow: 0 0 8px #EF4444;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.top-countdown-units {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 7, 15, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 5px 16px;
}

.tc-unit {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.tc-unit strong {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.tc-unit small {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-sep {
    font-weight: 800;
    color: var(--gold-main);
    font-size: 13px;
}

.top-countdown-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Event Key Info Cards */
.event-info-ribbon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 45px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-gold);
}

.info-icon {
    font-size: 34px;
    margin-bottom: 12px;
    display: inline-block;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
}

.info-card strong {
    color: #FFFFFF;
}

/* Prominent Refreshments & Hospitality Feature */
.refreshments-callout {
    background: linear-gradient(135deg, rgba(14, 34, 68, 0.95) 0%, rgba(28, 20, 6, 0.95) 100%);
    border: 2px solid var(--gold-main);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.refreshments-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.refreshments-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #03070f;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.refreshments-title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.refreshments-text {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 14px auto;
    line-height: 1.6;
}

.refreshments-credits {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;
    padding: 9px 24px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1.4;
}

.refreshments-credits strong {
    color: #FFF6CF;
    font-weight: 800;
}

.refreshments-credits a {
    color: #FFF6CF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.refreshments-credits a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px var(--gold-light);
}

/* PERFORMERS SECTION */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15.5px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.performer-profile {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 35px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.performer-profile:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-gold);
}

.performer-photo-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 18px auto;
    padding: 5px;
    background: var(--gold-gradient);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    position: relative;
}

.performer-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--bg-surface);
}

.performer-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.performer-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.performer-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Guest Ribbon Box */
.guest-appearance-card {
    grid-column: 1 / -1;
    background: var(--gold-gradient);
    color: #03070f;
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    border: 1px solid #FFF6CF;
}

.guest-details-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 4px;
}

.guest-name {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #040914;
    line-height: 1.15;
}

.guest-desc {
    font-size: 14.5px;
    font-weight: 600;
    color: #2b1d02;
    margin-top: 4px;
}

.guest-badge-btn {
    background: #040914;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 30px;
    white-space: nowrap;
    transition: var(--transition);
}

.guest-badge-btn:hover {
    background: #0d1e38;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* CAUSE / CHURCH APPEAL */
.cause-section {
    background: rgba(5, 15, 33, 0.7);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cause-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
    align-items: center;
}

.cause-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cause-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.cause-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.cause-stat {
    border-left: 2px solid var(--gold-main);
    padding-left: 12px;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-light);
}

.stat-lbl {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cause-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-deep);
}

.cause-visual img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #03070f;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid var(--gold-main);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* ==========================================================================
   SCHEDULE PAGE SPECIFIC STYLES
   ========================================================================== */
.schedule-header {
    text-align: center;
    padding: 50px 0 30px 0;
}

.schedule-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.schedule-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* Filter Controls */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 45px 0;
}

.filter-btn {
    background: rgba(7, 19, 38, 0.8);
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-gradient);
    color: #03070f;
    border-color: #FFF6CF;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

/* Timeline Layout */
.schedule-timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 10px 0;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-main) 0%, rgba(212, 175, 55, 0.3) 50%, var(--gold-main) 100%);
}

.schedule-card {
    position: relative;
    margin-left: 65px;
    margin-bottom: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateX(4px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-gold);
}

.schedule-card-dot {
    position: absolute;
    left: -44px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-main);
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 10px var(--gold-main);
}

.slot-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.slot-time {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.slot-duration {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
}

.slot-title {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.slot-details {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.slot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.slot-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
}

.badge-richard {
    background: rgba(30, 64, 175, 0.35);
    color: #93C5FD;
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.badge-alan {
    background: rgba(13, 148, 136, 0.35);
    color: #5EEAD4;
    border: 1px solid rgba(94, 234, 212, 0.3);
}

.badge-duet {
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}

.badge-guest {
    background: rgba(220, 38, 38, 0.3);
    color: #FCA5A5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

/* ==========================================================================
   DONATE PAGE SPECIFIC STYLES
   ========================================================================== */
.donate-hero {
    text-align: center;
    padding: 50px 0 30px 0;
}

.donate-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.donate-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin: 30px 0 60px 0;
}

.qr-spotlight-card {
    background: var(--bg-card);
    border: 2px solid var(--gold-main);
    border-radius: var(--radius-md);
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 25px rgba(212, 175, 55, 0.25);
    position: sticky;
    top: 100px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.qr-box-inner {
    width: 220px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px auto;
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.qr-box-inner img, .qr-box-inner svg {
    width: 100%;
    height: 100%;
    display: block;
}

.qr-instruction {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.copy-link-box {
    background: rgba(3, 7, 15, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.copy-link-url {
    font-size: 13px;
    color: var(--gold-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: monospace;
    flex: 1;
    min-width: 0;
}

.copy-btn {
    background: var(--gold-gradient);
    border: none;
    color: #03070f;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.donate-details-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.donate-details-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.impact-points {
    list-style: none;
    margin: 24px 0 30px 0;
}

.impact-points li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 14.5px;
    color: var(--text-secondary);
}

.impact-points li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--gold-main);
    font-size: 18px;
}

.quote-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--gold-main);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    font-style: italic;
    color: var(--gold-light);
    font-size: 14.5px;
    margin: 25px 0;
}

/* FOOTER */
.site-footer {
    background: #020409;
    border-top: 1px solid var(--border-gold);
    padding: 45px 0 30px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    font-size: 12.5px;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1040px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 7, 15, 0.98);
        border-bottom: 1px solid var(--border-gold);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }
}

@media (max-width: 900px) {

    .cause-grid, .donate-showcase-grid {
        grid-template-columns: 1fr;
    }

    .qr-spotlight-card {
        position: static;
    }

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

@media (max-width: 600px) {
    .top-countdown-wrapper {
        gap: 8px;
    }

    .top-countdown-label {
        font-size: 11px;
    }

    .top-countdown-units {
        padding: 4px 10px;
        gap: 5px;
    }

    .tc-unit strong {
        font-size: 14.5px;
    }

    .tc-unit small {
        font-size: 9px;
    }

    .top-countdown-date {
        display: none;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section {
        padding: 35px 0;
    }

    .donate-hero {
        padding: 35px 0 20px 0;
    }

    .qr-spotlight-card {
        padding: 24px 14px;
        margin: 0 auto;
    }

    .qr-box-inner {
        width: 180px;
        max-width: 100%;
        padding: 10px;
    }

    .copy-link-box {
        padding: 8px 10px;
        gap: 8px;
    }

    .copy-link-url {
        font-size: 11.5px;
    }

    .copy-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 13px;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .schedule-card {
        margin-left: 45px;
        padding: 16px 18px;
    }

    .schedule-timeline::before {
        left: 18px;
    }

    .schedule-card-dot {
        left: -33px;
        top: 20px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Poster Click & Lightbox Modal Styles */
.poster-preview-card {
    cursor: pointer;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 6px;
    background: rgba(3, 7, 15, 0.9);
    border: 2px solid var(--gold-main);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.poster-preview-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.4);
}

.poster-hover-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(3, 7, 15, 0.9);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    transition: var(--transition);
}

.poster-preview-card:hover .poster-hover-hint {
    background: var(--gold-gradient);
    color: #03070f;
    border-color: #FFF6CF;
}

/* Native HTML Dialog Lightbox Modal */
dialog.poster-modal {
    margin: auto;
    padding: 22px;
    background: rgba(4, 10, 22, 0.97);
    border: 2px solid var(--gold-main);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(212, 175, 55, 0.3);
    max-width: min(92vw, 520px);
    max-height: 92vh;
    color: var(--text-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

dialog.poster-modal:not([open]) {
    display: none;
}

dialog.poster-modal::backdrop {
    background: rgba(1, 4, 10, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-close-btn {
    background: none;
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--gold-gradient);
    color: #03070f;
    transform: scale(1.1);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    text-align: center;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.modal-poster-img {
    max-width: 100%;
    max-height: 58vh;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    display: block;
    margin: 0 auto;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
