/* ===== Smiley Spaces — OPTION 1: "After Dark, but Smiley" ===== */
/* Sophisticated dark canvas KEPT — but branded: smiley-yellow accent, bigger */
/* logo + wordmark, warm hero glow, smile-curve motif. Premium AND unmistakably Smiley. */

:root {
  --bg: #15120e;
  --bg-2: #1e1911;
  --ink: #f4ede0;
  --muted: #a99c86;
  --accent: #ffc21c;       /* SMILEY YELLOW (was muted gold) */
  --accent-2: #e8532e;     /* friendly coral — secondary pops */
  --accent-ink: #201a10;
  --line: #342c1f;
  --card: #1c170f;
  --blue: #4aa3e0;         /* heritage blue — secondary accent (Keynsham) */
  --pink: #ff6fb3;         /* heritage pink — secondary accent (Radstock) */
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .hero__title, .book__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }

.section__title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 2.5rem; max-width: 60ch; }

/* Smile-curve motif — a little grin under section titles */
.smile { display: inline-block; width: 64px; height: 18px; border: 0 solid var(--accent); border-bottom-width: 4px; border-radius: 0 0 64px 64px / 0 0 18px 18px; margin-bottom: 1.6rem; }
.smile--center { display: block; margin: 0.6rem auto 1.6rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 999px; font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em; border: 1px solid transparent; transition: all 0.18s ease; }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #ffcf47; transform: translateY(-1px); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 1.08rem; }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.88rem; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(21,18,14,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.5rem; }
.nav__logo { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo-img { height: 72px; width: auto; display: block; }
.nav__brand { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.nav__logo-text { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 0.92rem; letter-spacing: 0.02em; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { background: var(--accent); color: var(--accent-ink) !important; padding: 0.5rem 1.3rem; border-radius: 999px; font-weight: 700; }

/* Hero — warm yellow glow + big faded smiley watermark */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; padding: 4rem 1.5rem; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: radial-gradient(58% 55% at 80% 24%, rgba(255,194,28,0.20) 0%, transparent 56%), radial-gradient(55% 55% at 16% 12%, rgba(74,163,224,0.16) 0%, transparent 55%), radial-gradient(60% 55% at 12% 96%, rgba(255,111,179,0.14) 0%, transparent 55%), var(--bg); }
.hero__badge { position: absolute; right: -1%; top: 50%; transform: translateY(-50%); width: min(56vw, 600px); opacity: 0.20; pointer-events: none; }
.hero__logo { display: none; }   /* mobile only — a proud, full-colour smiley in its own space */
.hero__content { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 1.1rem; }
.hero__title { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 400; }
.hero__sub { max-width: 48ch; color: #d3c8b3; font-size: 1.18rem; margin: 1.6rem 0 2.4rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Sections */
.nights, .hire, .about, .reviews, .visit { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem; }

/* Festival feature (Valleyfest) — deliberately distinct from the ticketed cards */
.festival { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.5rem 0; }
.festival__inner { position: relative; overflow: hidden; background: linear-gradient(120deg, rgba(74,163,224,0.10), rgba(255,111,179,0.10)), var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3rem); }
.festival__inner::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, var(--blue), var(--pink)); }
.festival__eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.7rem; }
.festival__title { font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-bottom: 0.7rem; }
.festival__meta { color: var(--ink); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; }
.festival__acts { color: var(--muted); font-size: 1rem; margin-bottom: 1.1rem; line-height: 1.8; }
.festival__acts strong { color: var(--ink); }
.festival__note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; max-width: 60ch; }


/* Shows (poster cards) */
.shows__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.75rem; }
.show { display: flex; flex-direction: column; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: 12px; transition: border-color 0.18s ease, transform 0.18s ease; }
.show:hover { border-color: var(--accent); transform: translateY(-3px); }
.show__poster { display: block; background: var(--bg-2); }
.show__poster img { width: 100%; height: auto; display: block; }
.poster-ph { aspect-ratio: 1 / 1.414; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.poster-ph__day { font-family: 'Fraunces', serif; font-weight: 500; font-size: 2rem; color: var(--accent); }
.poster-ph__txt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; }
.show__meta { display: flex; flex-direction: column; align-items: flex-start; padding: 1.2rem 1.25rem 1.4rem; }
.show__venue { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #06243b; background: var(--blue); border-radius: 999px; padding: 0.25rem 0.8rem; }   /* Keynsham = blue */
.show__venue--radstock { color: #3a0a22; background: var(--pink); border: none; }   /* Radstock = pink */
.show__when { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.15rem; margin: 0.7rem 0 0.2rem; }
.show__acts { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.1rem; }
.show__tickets { margin-top: auto; }

/* Hire */
.hire__inner { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.75rem, 4vw, 3.25rem); text-align: center; max-width: 800px; margin: 0 auto; }
.hire__lead { color: var(--ink); font-size: 1.15rem; max-width: 60ch; margin: 0.75rem auto 1.75rem; }
.hire__lead strong { color: var(--accent); }
.hire__list { list-style: none; text-align: left; max-width: 52ch; margin: 0 auto 1.75rem; }
.hire__list li { padding-left: 1.6rem; position: relative; margin-bottom: 0.8rem; color: var(--muted); }
.hire__list li::before { content: "\263A"; position: absolute; left: 0; color: var(--accent); }
.hire__list strong { color: var(--ink); }
.hire__proof { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.9rem; }
.hire__note { margin-top: 1.2rem; color: var(--muted); font-size: 0.88rem; }

/* About */
.about__inner { max-width: 64ch; }
.about p { margin-bottom: 1.2rem; color: #d8cdb9; font-size: 1.1rem; }
.about strong { color: var(--ink); }

/* Reviews */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 2rem; }
.quote__stars { color: var(--accent); font-size: 1rem; letter-spacing: 3px; margin-bottom: 0.9rem; }
.quote p { font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 400; margin-bottom: 1rem; font-style: italic; }
.quote cite { color: var(--muted); font-style: normal; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; }

/* Visit */
.visit__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.75rem; align-items: center; }
.visit__name { font-size: 1.55rem; font-weight: 500; margin-bottom: 0.8rem; color: var(--ink); }
.visit__addr { font-size: 1.1rem; margin-bottom: 1.3rem; line-height: 1.7; color: var(--muted); }
.visit__addr strong { color: var(--ink); }
.visit__facts { list-style: none; margin-bottom: 1.6rem; }
.visit__facts li { padding-left: 1.5rem; position: relative; margin-bottom: 0.55rem; color: var(--muted); }
.visit__facts li::before { content: "\263A"; position: absolute; left: 0; color: var(--accent); }
.visit__map iframe { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: 12px; display: block; filter: grayscale(0.3) brightness(0.9); }

/* Book (404 reuse) */
.book { text-align: center; }
.book__title { font-size: clamp(2.5rem, 6vw, 4rem); }
.book__lead { max-width: 46ch; margin: 1rem auto 2rem; color: var(--muted); font-size: 1.12rem; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 2.75rem 1.5rem; text-align: center; color: var(--muted); font-size: 0.88rem; }
.footer a { color: var(--accent); }
.footer__social { margin-top: 0.6rem; }

/* Responsive */
@media (max-width: 780px) {
  .nav__links { gap: 1rem; }
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__inner { padding: 0.75rem 1.1rem; }
  .nav__brand { font-size: 1.2rem; white-space: nowrap; }
  .nav__logo { gap: 0.5rem; }
  .nav__logo-img { height: 46px; }
  .nav__cta { padding: 0.45rem 1rem; font-size: 0.85rem; }
  .hero__badge { display: none; }
  .hero__logo { display: block; width: 132px; height: auto; margin: 0.25rem 0 1.6rem; }
  .hero__badge { opacity: 0.06; right: -20%; }
  .visit__inner { grid-template-columns: 1fr; }
  .btn--lg { font-size: clamp(0.8rem, 4.2vw, 1.08rem); padding: 1rem 1.4rem; max-width: 100%; overflow-wrap: anywhere; }
}
