/*
Theme Name: Langhorne 150
Theme URI: https://langhorne150.com
Author: Langhorne Borough Planning Committee
Description: Official theme for the Langhorne Borough 150th Anniversary
Version: 2.0
*/

:root {
    --navy:    #07152b;
    --navy2:   #0d2144;
    --gold:    #c9a84c;
    --gold2:   #e8c97a;
    --crimson: #8b0000;
    --red:     #b22234;
    --white:   #f4f1eb;
    --off:     #d6d0c4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--navy);
    color: var(--white);
    font-size: 18px;
    line-height: 1.75;
    overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 64px;
    background: rgba(7,21,43,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.site-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.3;
}
.site-title span { color: var(--off); font-size: 0.6rem; display: block; letter-spacing: 4px; opacity: 0.7; }
.main-nav ul { list-style: none; display: flex; gap: 28px; }
.main-nav a {
    color: var(--off);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(7,21,43,0.98); padding: 20px 0; border-bottom: 1px solid rgba(201,168,76,0.2); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: 14px 30px; }
    .main-nav a::after { display: none; }
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://iili.io/BeHcN2a.jpg');
    background-size: cover;
    background-position: center;
    filter: saturate(0.5) brightness(0.4);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(178,34,52,0.22) 0%, rgba(7,21,43,0.5) 35%, rgba(7,21,43,0.75) 65%, rgba(7,21,43,0.95) 100%);
}
.hero-stars {
    position: absolute;
    top: 64px; left: 0; right: 0;
    height: 50px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1.5px, transparent 1.5px);
    background-size: 30px 25px;
    opacity: 0.1;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem; letter-spacing: 7px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; opacity: 0.85;
}
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    line-height: 1.05;
}
.hero h1 span { color: var(--gold2); }
.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    letter-spacing: 6px;
    color: var(--off);
    text-transform: uppercase;
    margin: 18px 0;
    opacity: 0.75;
}
.hero-rule { width: 100px; height: 1px; margin: 24px auto; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.hero-desc { font-size: 1.08rem; font-weight: 300; color: var(--off); max-width: 520px; margin: 0 auto 36px; line-height: 2; }

/* Countdown */
.countdown { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.count-box {
    background: rgba(7,21,43,0.75);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 18px 14px 12px;
    min-width: 82px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    text-align: center;
}
.count-box span { display: block; font-size: 2.2rem; font-weight: 700; color: var(--gold2); font-family: 'Cinzel', serif; line-height: 1; margin-bottom: 6px; }
.count-box label { font-size: 0.52rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.55; }

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; font-family: 'Cinzel', serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; border-radius: 3px; transition: 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
    border: 1px solid rgba(201,168,76,0.45); color: var(--gold);
    padding: 14px 32px; font-family: 'Cinzel', serif;
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; border-radius: 3px; transition: 0.25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center;
    gap: 5px; opacity: 0.35; font-size: 0.55rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--off);
    animation: bobble 2.5s ease-in-out infinite;
}
.scroll-hint::after { content: '▼'; font-size: 0.65rem; }
@keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ── STRIPE ── */
.stripe { height: 5px; background: linear-gradient(to right, var(--red) 33.33%, #fff 33.33%, #fff 66.66%, var(--navy2) 66.66%); }

/* ── INTRO BAND ── */
.intro-band {
    background: var(--navy2);
    padding: 72px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.intro-band .label { font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; opacity: 0.75; display: block; }
.intro-band h2 { font-family: 'Cinzel', serif; font-size: clamp(1.3rem, 3vw, 2rem); color: var(--white); max-width: 700px; margin: 0 auto 18px; line-height: 1.55; font-weight: 600; }
.intro-band p { max-width: 660px; margin: 0 auto; color: var(--off); font-size: 1.08rem; font-weight: 300; line-height: 1.95; }

/* ── GALLERY ── */
.gallery-section { padding: 80px 20px; background: var(--navy); }
.section-heading { text-align: center; margin-bottom: 44px; }
.section-heading .label { font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; opacity: 0.75; display: block; margin-bottom: 10px; }
.section-heading h2 { font-family: 'Cinzel', serif; font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--white); }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}
.photo-grid .p1 { grid-column: 1; grid-row: 1 / 3; }
.photo-grid .p2 { grid-column: 2; grid-row: 1; }
.photo-grid .p3 { grid-column: 3; grid-row: 1; }
.photo-grid .p4 { grid-column: 2 / 4; grid-row: 2; }
.photo-item { overflow: hidden; border-radius: 4px; position: relative; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.65) brightness(0.8); transition: 0.5s; }
.photo-item:hover img { transform: scale(1.05); filter: saturate(0.9) brightness(0.9); }
.photo-item .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(transparent, rgba(7,21,43,0.88)); font-size: 0.68rem; letter-spacing: 1px; color: var(--gold); font-family: 'Cinzel', serif; }
@media (max-width: 768px) {
    .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .photo-grid .p1 { grid-column: 1/3; grid-row: 1; height: 220px; }
    .photo-grid .p2 { grid-column: 1; grid-row: 2; height: 170px; }
    .photo-grid .p3 { grid-column: 2; grid-row: 2; height: 170px; }
    .photo-grid .p4 { grid-column: 1/3; grid-row: 3; height: 170px; }
}

/* ── NAV CARDS ── */
.cards-section { background: var(--navy2); padding: 80px 20px; }
.nav-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(201,168,76,0.08);
}
.nav-card {
    background: rgba(255,255,255,0.025); padding: 50px 40px;
    text-align: center; text-decoration: none; color: white;
    transition: 0.3s; display: block; position: relative; overflow: hidden;
}
.nav-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s; }
.nav-card.red-top::before { background: var(--red); }
.nav-card:hover::before { transform: scaleX(1); }
.nav-card:hover { background: rgba(255,255,255,0.05); }
.nav-card .icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.nav-card h2 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 12px; font-size: 1.2rem; }
.nav-card.red-top h2 { color: #e07070; }
.nav-card p { opacity: 0.7; font-size: 1.02rem; margin-bottom: 22px; font-weight: 300; }
.btn {
    display: inline-block; padding: 10px 24px; font-family: 'Cinzel', serif;
    font-weight: 700; font-size: 0.63rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; transition: 0.2s;
    background: var(--gold); color: var(--navy);
}
.btn:hover { background: var(--gold2); }
.btn.red { background: var(--red); color: white; }

/* ── PAGE HERO ── */
.page-hero { padding-top: 64px; position: relative; overflow: hidden; }
.page-hero-inner { padding: 70px 20px 55px; text-align: center; position: relative; z-index: 2; border-bottom: 1px solid rgba(201,168,76,0.15); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(201,168,76,0.05) 0%, transparent 65%); }
.page-hero h1 { font-family: 'Cinzel', serif; color: var(--gold); font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--off); font-size: 1.02rem; font-weight: 300; max-width: 560px; margin: 0 auto; }
.page-stripe { height: 4px; background: linear-gradient(to right, var(--red) 33.33%, #fff 33.33%, #fff 66.66%, var(--navy2) 66.66%); }

/* ── TIMELINE ── */
.timeline-wrap { max-width: 1100px; margin: 70px auto; padding: 0 20px; position: relative; }
.timeline-wrap::after { content: ''; position: absolute; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.15)); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
.tl-item { padding: 10px 50px; position: relative; width: 50%; box-sizing: border-box; margin-bottom: 48px; }
.tl-item::after { content: ''; position: absolute; width: 13px; height: 13px; right: -7px; top: 28px; background: var(--gold); border: 3px solid var(--navy); border-radius: 50%; z-index: 1; box-shadow: 0 0 0 2px var(--gold); }
.tl-item.left { left: 0; text-align: right; }
.tl-item.right { left: 50%; text-align: left; }
.tl-item.right::after { left: -7px; right: auto; }
.tl-card { padding: 22px; background: rgba(13,33,68,0.65); border: 1px solid rgba(201,168,76,0.14); border-radius: 8px; transition: 0.3s; }
.tl-card:hover { border-color: rgba(201,168,76,0.45); background: rgba(13,33,68,0.9); }
.tl-year { font-family: 'Cinzel', serif; font-size: 1.9rem; color: var(--gold); display: block; margin-bottom: 6px; line-height: 1; }
.tl-card h3 { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.tl-card p { font-size: 1.02rem; color: var(--off); font-weight: 300; line-height: 1.8; }
.tl-img { width: 100%; height: 190px; object-fit: cover; border-radius: 4px; margin-bottom: 14px; border: 1px solid rgba(201,168,76,0.18); filter: saturate(0.6) brightness(0.75); transition: filter 0.3s; }
.tl-card:hover .tl-img { filter: saturate(0.85) brightness(0.85); }
@media (max-width: 768px) {
    .timeline-wrap::after { left: 20px; }
    .tl-item { width: 100%; padding-left: 55px; padding-right: 14px; text-align: left; left: 0 !important; }
    .tl-item::after { left: 13px; right: auto; }
}

/* ── TIME CAPSULE ── */
.tc-wrap { max-width: 880px; margin: 0 auto; padding: 70px 20px 90px; }
.tc-section { margin-bottom: 54px; }
.tc-section h2 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 16px; font-size: 1.45rem; }
.tc-section p { color: var(--off); font-size: 1.05rem; font-weight: 300; margin-bottom: 14px; line-height: 1.9; }
.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent); margin: 48px 0; }
.highlight-box { background: rgba(13,33,68,0.65); border: 1px solid rgba(201,168,76,0.18); border-left: 3px solid var(--gold); border-radius: 8px; padding: 26px 30px; margin-top: 20px; }
.callout-title { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.badge-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.badge { font-size: 0.63rem; text-transform: uppercase; letter-spacing: 2px; padding: 7px 14px; border-radius: 999px; background: rgba(0,0,0,0.3); border: 1px solid rgba(201,168,76,0.28); color: var(--gold); }
.badge.red { border-color: rgba(178,34,52,0.45); color: #e07070; }

/* ── COMMITTEE ── */
.committee-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 20px 100px; }
.committee-intro { text-align: center; margin-bottom: 56px; }
.committee-intro p { color: var(--off); font-weight: 300; font-size: 1.05rem; line-height: 1.95; max-width: 640px; margin: 0 auto; }
.chair-block { text-align: center; margin: 0 auto 56px; padding: 42px; background: rgba(13,33,68,0.6); border: 1px solid rgba(201,168,76,0.28); border-radius: 10px; max-width: 460px; }
.chair-name { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold); margin-bottom: 6px; }
.chair-role { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px; color: var(--off); opacity: 0.65; margin-bottom: 16px; display: block; }
.gold-rule { width: 50px; height: 1px; background: var(--gold); margin: 14px auto; opacity: 0.4; }
.chair-block p { color: var(--off); font-weight: 300; font-size: 0.97rem; line-height: 1.85; }
.members-label { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.62rem; letter-spacing: 5px; text-transform: uppercase; text-align: center; margin-bottom: 28px; opacity: 0.7; }
.members-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1px; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.1); border-radius: 8px; overflow: hidden; }
.member-item { background: rgba(7,21,43,0.85); padding: 20px 22px; transition: 0.25s; }
.member-item:hover { background: rgba(13,33,68,0.95); }
.member-name { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.92rem; margin-bottom: 3px; }
.member-role-tag { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); opacity: 0.65; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.1); padding: 55px 20px 36px; text-align: center; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 6px; }
.footer-sub { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--off); opacity: 0.45; margin-bottom: 28px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { color: var(--off); text-decoration: none; font-size: 0.72rem; letter-spacing: 1px; opacity: 0.55; transition: 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-copy { font-size: 0.6rem; opacity: 0.28; letter-spacing: 1px; }

/* ── EVENTS PAGE ── */
.calendar-section {
    padding: 70px 20px 60px;
    background: var(--navy2);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.calendar-embed-wrap {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    overflow: hidden;
    min-height: 200px;
}
.calendar-placeholder {
    padding: 50px 30px;
    text-align: center;
    color: var(--off);
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.7;
}

/* Sugar Calendar override colors to blend with theme */
.calendar-embed-wrap .sc-calendar { background: transparent !important; color: var(--white) !important; }
.calendar-embed-wrap .sc-nav { background: rgba(13,33,68,0.8) !important; border-color: rgba(201,168,76,0.2) !important; }
.calendar-embed-wrap .sc-day--has-events { background: rgba(201,168,76,0.15) !important; }
.calendar-embed-wrap .sc-event { background: var(--gold) !important; color: var(--navy) !important; border-radius: 3px; }

.event-recap-section {
    background: var(--navy);
    padding: 80px 20px;
}
.event-recap-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 800px) {
    .event-recap-inner { grid-template-columns: 1fr; gap: 36px; }
}
.recap-label {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 14px;
}
.recap-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}
.recap-text p {
    color: var(--off);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.95;
    margin-bottom: 14px;
}
.recap-photo img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.2);
    filter: saturate(0.85) brightness(0.9);
    transition: filter 0.3s;
}
.recap-photo img:hover { filter: saturate(1) brightness(0.95); }
.recap-photo-cap {
    font-size: 0.7rem;
    color: var(--off);
    opacity: 0.5;
    margin-top: 10px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    text-align: center;
}

.upcoming-section {
    background: var(--navy2);
    padding: 80px 20px 90px;
}
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.upcoming-card {
    background: rgba(7,21,43,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    padding: 28px 26px;
    transition: 0.3s;
}
.upcoming-card:hover {
    border-color: rgba(201,168,76,0.35);
    background: rgba(13,33,68,0.9);
    transform: translateY(-3px);
}
.upcoming-card.highlight {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.06);
}
.uc-month {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.8;
}
.uc-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
}
.uc-desc {
    font-size: 1.02rem;
    color: var(--off);
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.85;
}

/* ── BIGGER EYEBROW ── */
.hero-eyebrow { font-size: 0.82rem !important; }

/* ── SUGAR CALENDAR READABILITY FIX ── */
.calendar-embed-wrap,
.calendar-embed-wrap * {
    color: var(--white) !important;
}
/* Main calendar container */
.calendar-embed-wrap .sc-calendar,
.calendar-embed-wrap .sugar-calendar-block,
.calendar-embed-wrap .sc-event-calendar {
    background: transparent !important;
    border: none !important;
    color: var(--white) !important;
}
/* Header bar (month nav) */
.calendar-embed-wrap .sc-toolbar,
.calendar-embed-wrap .sc-nav,
.calendar-embed-wrap .sc-calendar-header,
.calendar-embed-wrap .sugar-calendar-block__nav {
    background: rgba(13,33,68,0.9) !important;
    border: 1px solid rgba(201,168,76,0.25) !important;
    border-radius: 6px !important;
    color: var(--white) !important;
    margin-bottom: 8px !important;
}
/* Day cells */
.calendar-embed-wrap td,
.calendar-embed-wrap .sc-day,
.calendar-embed-wrap .sugar-calendar-block__day {
    background: rgba(7,21,43,0.7) !important;
    border: 1px solid rgba(201,168,76,0.1) !important;
    color: var(--white) !important;
}
/* Day numbers */
.calendar-embed-wrap .sc-day-number,
.calendar-embed-wrap .sugar-calendar-block__day-number,
.calendar-embed-wrap td > span {
    color: var(--white) !important;
    font-weight: 400 !important;
}
/* Weekday headers MON TUE etc */
.calendar-embed-wrap th,
.calendar-embed-wrap .sc-day-header,
.calendar-embed-wrap .sugar-calendar-block__day-header {
    background: rgba(13,33,68,0.95) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(201,168,76,0.15) !important;
    font-family: 'Cinzel', serif !important;
    font-size: 0.65rem !important;
    letter-spacing: 2px !important;
}
/* Today highlight */
.calendar-embed-wrap .sc-day--today,
.calendar-embed-wrap .sugar-calendar-block__day--today {
    background: rgba(201,168,76,0.12) !important;
    border-color: rgba(201,168,76,0.4) !important;
}
/* Event pills */
.calendar-embed-wrap .sc-event,
.calendar-embed-wrap .sugar-calendar-block__event {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: 3px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
}
/* Nav buttons */
.calendar-embed-wrap button,
.calendar-embed-wrap .sc-nav-btn,
.calendar-embed-wrap select {
    background: rgba(13,33,68,0.9) !important;
    color: var(--white) !important;
    border: 1px solid rgba(201,168,76,0.25) !important;
    border-radius: 4px !important;
}
.calendar-embed-wrap button:hover {
    background: rgba(201,168,76,0.15) !important;
    border-color: var(--gold) !important;
}
/* Search bar */
.calendar-embed-wrap input[type="search"],
.calendar-embed-wrap input[type="text"] {
    background: rgba(7,21,43,0.8) !important;
    color: var(--white) !important;
    border: 1px solid rgba(201,168,76,0.25) !important;
    border-radius: 4px !important;
}
/* Outside-month days */
.calendar-embed-wrap .sc-day--outside-month,
.calendar-embed-wrap .sugar-calendar-block__day--outside-month {
    background: rgba(7,21,43,0.4) !important;
    opacity: 0.5 !important;
}

/* ── LINKS & RESOURCES PAGE ── */
.links-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}
.links-section { margin-bottom: 8px; }
.links-section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 18px;
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.link-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: rgba(13,33,68,0.55);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: 0.25s;
    overflow: hidden;
}
.link-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(13,33,68,0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.link-card.no-link {
    cursor: default;
}
.link-card.no-link:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(201,168,76,0.12);
}
.lc-img-wrap {
    width: 100%;
    height: 130px;
    overflow: hidden;
    flex-shrink: 0;
}
.lc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.75);
    transition: filter 0.3s;
    display: block;
}
.link-card:hover .lc-img-wrap img {
    filter: saturate(0.85) brightness(0.85);
}
.lc-solid {
    background: linear-gradient(135deg, rgba(13,33,68,0.9) 0%, rgba(7,21,43,0.6) 100%);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.lc-body {
    padding: 18px 20px 20px;
}
.lc-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.35;
}
.lc-desc {
    font-size: 1.02rem;
    color: #c8c2b8;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 12px;
}
.lc-url {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}
.links-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
    margin: 44px 0;
}

/* ── CALENDAR DROPDOWN FIX (white on white) ── */
.calendar-embed-wrap select option,
.calendar-embed-wrap .sc-dropdown,
.calendar-embed-wrap .sc-dropdown-menu,
.calendar-embed-wrap [role="listbox"],
.calendar-embed-wrap [role="option"],
.calendar-embed-wrap .sugar-calendar-block__view-select,
.calendar-embed-wrap .sugar-calendar-block__view-select option,
.calendar-embed-wrap ul.sc-dropdown,
.calendar-embed-wrap .sc-select-menu,
.calendar-embed-wrap .sc-select-menu li {
    background: #0d2144 !important;
    color: var(--white) !important;
    border-color: rgba(201,168,76,0.25) !important;
}
.calendar-embed-wrap select option:hover,
.calendar-embed-wrap [role="option"]:hover,
.calendar-embed-wrap .sc-select-menu li:hover {
    background: rgba(201,168,76,0.15) !important;
    color: var(--white) !important;
}
/* Fix any remaining light popups/dropdowns */
.calendar-embed-wrap .components-popover,
.calendar-embed-wrap .components-dropdown-menu__menu,
.calendar-embed-wrap [class*="popover"],
.calendar-embed-wrap [class*="dropdown"] {
    background: #0d2144 !important;
    color: var(--white) !important;
    border: 1px solid rgba(201,168,76,0.2) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
}
.calendar-embed-wrap [class*="dropdown"] *,
.calendar-embed-wrap [class*="popover"] * {
    color: var(--white) !important;
}

/* ══════════════════════════════════════
   RED WHITE & BLUE DINNER PAGE
══════════════════════════════════════ */

/* Hero */
.dinner-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}
.dinner-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, #b22234 0%, #07152b 40%, #07152b 60%, #b22234 100%);
}
.dinner-hero-overlay {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}
.dinner-hero-content { position: relative; z-index: 2; max-width: 820px; }
.dinner-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem; letter-spacing: 6px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 18px; opacity: 0.85;
}
.dinner-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700; color: var(--white);
    line-height: 1.1; margin-bottom: 32px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.dinner-title span { color: var(--gold2, #e8c97a); }
.dinner-meta-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 0; margin-bottom: 22px;
}
.dinner-meta-item { padding: 0 24px; text-align: center; }
.dinner-meta-div { width: 1px; height: 36px; background: rgba(201,168,76,0.3); }
.dmi-label { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); opacity: 0.75; margin-bottom: 4px; }
.dmi-val { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--white); }
.dinner-flag-note {
    font-size: 0.72rem; color: var(--off); opacity: 0.6;
    letter-spacing: 2px; font-style: italic;
}
@media (max-width: 600px) {
    .dinner-meta-row { flex-direction: column; gap: 14px; }
    .dinner-meta-div { width: 60px; height: 1px; }
}

/* Wrap */
.dinner-wrap { max-width: 960px; margin: 0 auto; padding: 60px 20px 100px; }

/* Sections */
.dinner-section { margin-bottom: 8px; }
.dinner-section h2 {
    font-family: 'Cinzel', serif; color: var(--gold);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.dinner-section p { color: var(--off); font-size: 1.05rem; font-weight: 300; line-height: 1.9; margin-bottom: 14px; }
.dinner-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.25), transparent); margin: 48px 0; }

/* Highlight box */
.dinner-highlight-box {
    background: rgba(178,34,52,0.08);
    border: 1px solid rgba(178,34,52,0.25);
    border-left: 3px solid var(--red, #b22234);
    border-radius: 8px; padding: 24px 28px; margin-top: 22px;
}
.dhb-title { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.dinner-highlight-box p { font-size: 1rem; }

/* Timeline */
.dinner-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.dinner-timeline::before {
    content: ''; position: absolute;
    left: 72px; top: 10px; bottom: 10px; width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.dt-item { display: flex; gap: 28px; padding: 0 0 36px 0; position: relative; }
.dt-time {
    font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--gold);
    min-width: 58px; text-align: right; padding-top: 3px;
    position: relative; flex-shrink: 0;
}
.dt-time::after {
    content: ''; position: absolute;
    right: -20px; top: 8px;
    width: 10px; height: 10px;
    border-radius: 50%; background: var(--gold);
    border: 2px solid var(--navy);
    box-shadow: 0 0 0 2px var(--gold);
}
.dt-body { padding-left: 14px; }
.dt-title { font-family: 'Cinzel', serif; color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.dt-body p { font-size: 1.04rem; color: var(--off); font-weight: 300; line-height: 1.85; margin: 0; }
@media (max-width: 500px) {
    .dinner-timeline::before { left: 56px; }
    .dt-time { min-width: 44px; font-size: 0.68rem; }
}

/* Bring/Provide grid */
.dinner-bring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 8px;
}
@media (max-width: 580px) { .dinner-bring-grid { grid-template-columns: 1fr; } }
.bring-col {
    padding: 24px 26px;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.15);
}
.bring-col.you { background: rgba(178,34,52,0.06); border-left: 3px solid rgba(178,34,52,0.5); }
.bring-col.we { background: rgba(13,33,68,0.5); border-left: 3px solid rgba(201,168,76,0.4); }
.bring-col-title { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.bring-list { list-style: none; padding: 0; margin: 0; }
.bring-list li { font-size: 1.04rem; color: var(--off); font-weight: 300; line-height: 1.7; padding: 5px 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
.bring-list li:last-child { border-bottom: none; }
.bring-list li::before { content: '—'; color: var(--gold); margin-right: 8px; opacity: 0.5; }

/* Prizes */
.prize-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.prize-item {
    flex: 1; min-width: 180px;
    background: rgba(13,33,68,0.6);
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 3px solid var(--gold);
    border-radius: 6px; padding: 18px 20px;
    text-align: center;
}
.prize-label { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.9rem; margin-bottom: 5px; }
.prize-sub { font-size: 0.82rem; color: var(--gold); opacity: 0.7; letter-spacing: 1px; text-transform: uppercase; }

/* Deadline box */
.dinner-deadline-box {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 6px; padding: 14px 22px;
    font-size: 1rem; color: var(--off);
    margin: 18px 0 28px; text-align: center;
    letter-spacing: 0.5px;
}
.dinner-deadline-box strong { color: var(--gold); }

/* Restaurant cards */
.restaurant-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; margin-bottom: 20px; }
.restaurant-card {
    background: rgba(13,33,68,0.55);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px; overflow: hidden;
    transition: border-color 0.25s;
}
.restaurant-card:hover { border-color: rgba(201,168,76,0.4); }
.rc-header { padding: 16px 18px 14px; border-bottom: 1px solid rgba(201,168,76,0.1); }
.rc-name { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1rem; margin-bottom: 4px; }
.rc-info { font-size: 0.88rem; color: var(--off); opacity: 0.6; }
.rc-img-wrap { height: 160px; overflow: hidden; }
.rc-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.85); transition: filter 0.3s; }
.restaurant-card:hover .rc-img-wrap img { filter: brightness(0.95) saturate(1); }
.rc-body { padding: 16px 18px; }
.menu-item { padding: 6px 0; }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 5px; }
.menu-item-name { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.88rem; }
.menu-item-price { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.menu-item-desc { font-size: 0.97rem; color: var(--off); font-weight: 300; line-height: 1.75; opacity: 0.85; }
.menu-item-divider { height: 1px; background: rgba(201,168,76,0.1); margin: 12px 0; }
.restaurant-note { font-size: 0.98rem; color: var(--off); opacity: 0.65; font-style: italic; line-height: 1.7; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.faq-item {
    background: rgba(13,33,68,0.5);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 8px; padding: 20px 22px;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(201,168,76,0.3); }
.faq-q { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.97rem; margin-bottom: 8px; }
.faq-a { font-size: 1rem; color: var(--off); font-weight: 300; line-height: 1.8; }

/* Sponsors */
.sponsors-section p { max-width: 600px; }
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 8px; }
.sponsor-card {
    background: rgba(13,33,68,0.55);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px; overflow: hidden;
    transition: border-color 0.25s;
}
.sponsor-card:hover { border-color: rgba(201,168,76,0.45); }
.sponsor-img-wrap { height: 160px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: rgba(7,21,43,0.7); }
.sponsor-img-wrap img { max-width: 90%; max-height: 140px; object-fit: contain; filter: brightness(1.1); }
.sponsor-kw {
    background: linear-gradient(135deg, #b22234 0%, #07152b 50%, #b22234 100%);
}
.sponsor-kw-inner { text-align: center; }
.sponsor-kw-name { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.sponsor-kw-biz { font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.sponsor-body { padding: 16px 18px; }
.sponsor-name { font-family: 'Cinzel', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
.sponsor-sub { font-size: 0.9rem; color: var(--gold); opacity: 0.8; margin-bottom: 5px; }
.sponsor-addr { font-size: 0.87rem; color: var(--off); opacity: 0.6; }

/* Gwen sponsor — taller image to show banner properly */
.sponsor-img-gwen {
    height: 200px !important;
    background: #fff !important;
    padding: 12px;
}
.sponsor-img-gwen img {
    max-height: 180px !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

/* RWB Dinner signup button */
.dinner-signup-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 3px;
    transition: 0.25s;
}
.dinner-signup-btn:hover {
    background: #e8c97a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
