@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:wght@400;600;700&display=swap");

:root {
  --mustard: #e0a336;
  --mustard-dark: #c1841c;
  --red: #96322f;
  --red-dark: #7a2523;
  --teal: #1f5c5c;
  --teal-dark: #163f3f;
  --cream: #faf3e2;
  --cream-dark: #f0e4c8;
  --white: #ffffff;
  --dark: #2a1f16;
  --text: #3d332a;
  --text-muted: #7a6f62;
  --border: #e6d9bd;

  --font-heading: 'Baloo 2', 'Nunito Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --nav-h: 72px;
  --max-w: 1160px;
  --section-py: 5rem;

  --shadow-sm: 0 2px 10px rgba(42,31,22,0.08);
  --shadow-md: 0 6px 24px rgba(42,31,22,0.12);
  --shadow-lg: 0 12px 48px rgba(42,31,22,0.18);
  --radius: 14px;
  --ease: 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--red); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); }
p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; color: var(--dark); }
small { font-size: 0.87em; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-py) 1.5rem; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--teal-dark); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-bottom: 0.65rem; }
.section-head p  { color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-head p { color: var(--cream-dark); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-outline-muted { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.75); cursor: default; }
.btn-outline-muted:hover { transform: none; }
.btn-dark { background: var(--teal-dark); color: var(--white); }
.btn-dark:hover { background: var(--teal); color: var(--white); }
.btn-bordered { border-color: var(--teal); color: var(--teal); }
.btn-bordered:hover { background: var(--teal); color: var(--white); }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.85rem; }
.btn-muted { background: var(--border); color: var(--text-muted); cursor: default; }
.btn-muted:hover { transform: none; background: var(--border); color: var(--text-muted); }

/* ── Announcement banner ────────────────────────────────── */
.announcement-banner {
  background: var(--mustard);
  color: var(--dark);
  text-align: center;
  padding: 0.6rem 2.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
}
.announcement-close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--dark);
}

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
}
.nav-logo img { border-radius: 50%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  color: var(--dark);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a.active, .nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-family: var(--font-heading);
}
.nav-cta:hover { background: var(--red-dark); color: var(--white) !important; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 0.5rem 0;
  margin-top: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--red); }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ease);
  }
  .nav-links.open { max-height: 90vh; overflow-y: auto; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 1.5rem; }
  .nav-cta { margin: 1rem 1.5rem; text-align: center; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: var(--cream);
  }
  .nav-dropdown-menu li { border-top: 1px solid var(--border); }
  .nav-dropdown-menu a { padding-left: 2.5rem; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
}
.hero-bg {
  width: 100%;
  height: 46vh;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.hero-intro {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}
.hero-intro .tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--mustard);
  margin-bottom: 0.75rem;
}
.hero-intro p { color: var(--cream-dark); max-width: 680px; margin: 0 auto 1.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Photo hero (homepage) ──────────────────────────────── */
.hero--photo {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,63,63,0.25) 0%, rgba(22,63,63,0.78) 55%, rgba(22,63,63,0.97) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 1.5rem 3.5rem;
  text-align: center;
}
.hero-content .tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--mustard);
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 14px rgba(0,0,0,0.5);
}
.hero-content h1 { color: var(--white); max-width: 780px; margin: 0 auto 0.85rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.hero-content .lead { color: var(--cream-dark); max-width: 640px; margin: 0 auto 1.5rem; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }

@media (max-width: 640px) {
  .hero--photo { min-height: 90vh; }
}

/* ── Quick facts strip ──────────────────────────────────── */
.facts-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}
.fact {
  padding: 1.75rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.fact:last-child { border-right: none; }
.fact .fact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.fact .fact-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--dark); }

@media (max-width: 780px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ── Cards ───────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

.cards-grid--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .cards-grid--2col { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  font-size: 2.1rem;
  padding: 1.5rem 1.5rem 0;
}
.card-body { padding: 1rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Photo gallery ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.gallery-grid figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; } }

/* ── Badges (welcome strip) ─────────────────────────────── */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.badge-item { max-width: 220px; }
.badge-item .badge-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.badge-item h4 { margin-bottom: 0.35rem; }
.badge-item p { color: var(--text-muted); font-size: 0.9rem; }
.section-dark .badge-item h4 { color: var(--white); }
.section-dark .badge-item p { color: var(--cream-dark); }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--teal-dark);
  color: var(--white);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p { color: var(--cream-dark); max-width: 640px; margin: 0 auto; }

/* ── Tables ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
table.schedule-table th, table.schedule-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
}
table.schedule-table th {
  font-family: var(--font-heading);
  color: var(--dark);
  background: var(--cream);
}
.badge-price {
  display: inline-block;
  background: var(--mustard);
  color: var(--dark);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* ── Booking / ticket panel ─────────────────────────────── */
.ticket-panel {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.ticket-price { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--red); }
.ticket-price small { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.ticket-note { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; }

/* ── Location page ──────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 780px) { .location-grid { grid-template-columns: 1fr; } }

/* ── Map ─────────────────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ── Eyebrow label ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard-dark);
  margin-bottom: 0.5rem;
}
.section-dark .eyebrow { color: var(--mustard); }

/* ── Checklist ───────────────────────────────────────────── */
.checklist { list-style: none; }
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.checklist li:last-child { margin-bottom: 0; }

/* ── Tips list ───────────────────────────────────────────── */
.tips-list {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.tips-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--border);
}
.tips-list li:last-child { border-bottom: none; }
.tips-list li::before {
  content: "💡";
  position: absolute;
  left: 0;
  top: 0.75rem;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--cream-dark);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-mascot { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 0.75rem; }
.footer-about h4 { color: var(--white); margin-bottom: 0.4rem; }
.footer-about p { font-size: 0.9rem; color: var(--cream-dark); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
}
.social-btn:hover { background: var(--mustard); color: var(--dark); }
.social-btn-on-light { background: var(--white); color: var(--teal-dark); box-shadow: var(--shadow-sm); }
.social-btn-on-light:hover { background: var(--mustard); color: var(--dark); }
.footer-col h4 { color: var(--white); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col a { color: var(--cream-dark); }
.footer-col a:hover { color: var(--mustard); }
.contact-list li { color: var(--cream-dark); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Misc ────────────────────────────────────────────────── */
.center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
