/* ==========================================================================
   The Front Porch Stage — site styles (hand-written; no GoDaddy code).
   Brand: Dancing Script (display) + Poppins (text); slate + warm on dark.
   ========================================================================== */

:root {
    --bg: #1a1a1a;
    --bg-alt: #161616;
    --bg-card: #232323;
    --ink: #e6e6e6;
    --muted: #9aa0a6;
    --line: rgba(255, 255, 255, 0.10);
    --slate: #3f5e74;
    --slate-light: #7ea0b6;
    --warm: #e8855a;
    --white: #ffffff;
    --script: 'Dancing Script', 'Segoe Script', cursive;
    --sans: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--slate-light); }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 48px 0; }

/* ---- display headings ---- */
.script {
    font-family: var(--script);
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
}
.section-title {
    font-family: var(--script);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--slate-light);
    text-align: center;
    margin: 0 0 8px;
}
.section-intro {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--muted);
}

/* ---- buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.05s ease;
}
.btn--primary { background: linear-gradient(135deg, #f3a77f 0%, var(--warm) 100%); color: #fff; }
.btn--slate { background: var(--slate); color: #fff; }
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }

/* ==========================================================================
   Hero (home) — Vimeo background video with overlaid title
   ========================================================================== */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Poster shows immediately / if the video can't load; the iframe covers it. */
    background: #000 url('/images/hero-poster.jpg') center/cover no-repeat;
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* cover the area regardless of aspect ratio */
    pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
    .hero__video { height: 56.25vw; top: 50%; transform: translateY(-50%); }
}
@media (max-aspect-ratio: 16/9) {
    .hero__video { width: 177.78vh; left: 50%; transform: translateX(-50%); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 24px; max-width: 820px; }
.hero__title {
    font-family: var(--script);
    font-weight: 700;
    color: #fff;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.02;
    margin: 0 0 14px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.hero__subtitle {
    color: #f0f0f0;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin: 0 auto;
    max-width: 620px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Schedule (home)
   ========================================================================== */
.schedule__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 880px;
}
.schedule__row {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: baseline;
    gap: 18px;
    padding: 22px 4px;
    border-top: 1px solid var(--line);
}
.schedule__row:last-child { border-bottom: 1px solid var(--line); }
.schedule__date {
    font-family: var(--script);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--slate-light);
    line-height: 1.1;
}
.schedule__act { font-size: 1.15rem; font-weight: 500; color: var(--white); }
.schedule__note {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--warm);
    border-radius: 999px;
    vertical-align: middle;
}
.schedule__meta { text-align: right; white-space: nowrap; }
.schedule__time { font-weight: 600; color: var(--ink); }
.schedule__place { display: block; font-size: 0.85rem; color: var(--muted); }
.schedule__foot {
    max-width: 640px;
    margin: 40px auto 0;
    text-align: center;
    color: var(--muted);
}
.schedule__foot strong { color: var(--ink); }
@media (max-width: 640px) {
    .schedule__row { grid-template-columns: 1fr; gap: 4px; padding: 18px 4px; }
    .schedule__meta { text-align: left; }
    .schedule__date { font-size: 1.5rem; }
}

/* ==========================================================================
   About
   ========================================================================== */
.page-banner {
    height: 360px;
    background-size: cover;
    background-position: center 28%;
}
.prose {
    max-width: 760px;
    margin: 0 auto;
}
.prose p { margin: 0 0 1.25em; }
.prose p:first-of-type::first-letter {
    font-family: var(--script);
    font-size: 3.2rem;
    line-height: 0.8;
    float: left;
    margin: 6px 10px 0 0;
    color: var(--warm);
}
.sponsors { text-align: center; }
.sponsor-logo { max-height: 90px; margin: 18px auto 0; filter: brightness(0) invert(1) opacity(0.85); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-info { text-align: center; }
.contact-info__address {
    font-size: 1.05rem;
    color: var(--ink);
    margin: 8px 0 26px;
}
.map-embed {
    margin-top: 36px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    line-height: 0;
}
.map-embed iframe { width: 100%; height: 380px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ---- social ---- */
.social {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 8px;
}
.social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55);
    color: #fff;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.social__link:hover { background: #fff; color: var(--bg); border-color: #fff; }
.social__link svg { width: 24px; height: 24px; fill: currentColor; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    padding: 30px 0;
}
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.site-footer__copy { color: var(--muted); font-size: 0.9rem; margin: 0; }
.site-footer__by { display: inline-flex; align-items: center; line-height: 0; }
.site-footer__by img { height: 56px; width: auto; }
@media (max-width: 560px) {
    .site-footer__inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.fps-form { max-width: 640px; margin: 0 auto; }
.fps-form__title {
    font-family: var(--script);
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3rem);
    text-align: center;
    color: var(--slate-light);
    margin: 0 0 6px;
}
.fps-form__lead { text-align: center; color: var(--muted); margin: 0 0 28px; }
.fps-form__status {
    background: rgba(46, 160, 90, 0.15);
    border: 1px solid rgba(46, 160, 90, 0.45);
    color: #9ad8b0;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 22px;
    text-align: center;
}
.fps-form__field { margin-bottom: 18px; }
.fps-form__field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 6px;
}
.fps-form__field .req { color: var(--warm); }
.fps-form__field input,
.fps-form__field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font: inherit;
    color: #1b1b1b;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.fps-form__field input:focus,
.fps-form__field textarea:focus {
    outline: none;
    border-color: var(--slate-light);
    box-shadow: 0 0 0 3px rgba(126, 160, 182, 0.25);
}
.fps-form__field textarea { min-height: 140px; resize: vertical; }
.fps-form__field--invalid input,
.fps-form__field--invalid textarea { border-color: #e0796b; }
.fps-form__error { display: block; margin-top: 6px; font-size: 0.85rem; color: #e0796b; }
.fps-form__optional { color: var(--muted); text-transform: none; font-weight: 400; }
.fps-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fps-form__submit {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(135deg, #f3a77f 0%, var(--warm) 100%);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.05s ease;
}
.fps-form__submit:hover { filter: brightness(1.05); }
.fps-form__submit:active { transform: translateY(1px); }
