@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --primary:    hsl(12, 90%, 58%);
  --secondary:  hsl(45, 93%, 47%);
  --accent:     hsl(222, 47%, 11%);
  --bg:         hsl(40, 33%, 98%);
  --white:      #ffffff;
  --muted:      hsl(222, 10%, 40%);
  --border:     hsl(40, 20%, 90%);
  --font-sans:  'Nunito', sans-serif;
  --font-disp:  'Fredoka', sans-serif;
  --radius:     1rem;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--accent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-disp);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── Utilities ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
.section-bg-white { background: var(--white); }
.section-bg-default { background: var(--bg); }

/* ── Fade-in animation ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════
   1. NAVIGATION
══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /*padding: 0.75rem 0;*/
  padding: 0.3rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  /*padding: 0.75rem 0;*/
  padding: 0.3rem 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a, .nav-links button {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
#navbar.scrolled .nav-links a,
#navbar.scrolled .nav-links button {
  color: var(--muted);
}
.nav-links a:hover, .nav-links button:hover { color: var(--white); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links button:hover { color: var(--primary); }

.btn-nav {
  background: var(--white);
  color: var(--primary) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.1s;
}
#navbar.scrolled .btn-nav {
  background: var(--secondary);
  color: var(--accent) !important;
}
.btn-nav:hover { opacity: 0.9; }

/* Hamburger */
.nav-hamburger {
  display: none;
  padding: 0.5rem;
  color: var(--white);
  font-size: 1.5rem;
}
#navbar.scrolled .nav-hamburger { color: var(--accent); }

/* Mobile menu */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a, #mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
#mobile-menu a:last-child, #mobile-menu button:last-child { border-bottom: none; }
.btn-mobile-book {
  margin-top: 0.5rem;
  background: var(--primary) !important;
  color: var(--white) !important;
  text-align: center !important;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem !important;
}

/* ══════════════════════════════════════════════════
   2. HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,60,0.8) 0%, rgba(15,30,60,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}
.hero-h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-p {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0 2rem;
  height: 3.5rem;
  border-radius: 999px;
  box-shadow: 0 8px 0 rgba(0,0,0,0.12);
  transition: transform 0.1s, box-shadow 0.1s, opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(3px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.12);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0 2rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); }

/* ══════════════════════════════════════════════════
   3. ABOUT
══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
}
.about-card .img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  margin-bottom: 1.25rem;
}
.about-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-card:hover .img-wrap img { transform: scale(1.05); }
.about-card .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,60,0.75) 0%, transparent 55%);
}
.about-card .img-title {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.about-card p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   4. PLAY AREA
══════════════════════════════════════════════════ */
.play-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.play-header-left h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.play-header-left p { font-size: 1.05rem; color: var(--muted); }
.play-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.badge .badge-icon { font-size: 1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,60,0.88) 0%, rgba(15,30,60,0.15) 55%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 0.9; }
.gallery-label {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

/* Rules */
.rules-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--accent);
  text-align: center;
  margin: 5rem 0 2.5rem;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.rule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rule-icon { font-size: 2rem; flex-shrink: 0; margin-top: 0.1rem; }
.rule-card h4 {
  font-family: var(--font-disp);
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.rule-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   5. MEMBERSHIP
══════════════════════════════════════════════════ */
.membership-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: hsl(45,93%,90%);
  border: 1px solid hsl(45,93%,70%);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0;
}
.membership-note .note-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.membership-note p { color: var(--accent); font-size: 0.95rem; line-height: 1.5; }
.membership-note p strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; }

.membership-card {
  background: var(--accent);
  color: var(--white);
  border-radius: 1.75rem;
  padding: 2.5rem;
  max-width: 420px;
  margin: 3.5rem auto 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(15,30,60,0.3);
}
.membership-tag {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.membership-card h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
}
.membership-card .sub { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.membership-price {
  font-family: var(--font-disp);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.membership-price-label { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 2rem; }
.membership-features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.membership-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feat-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feat-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.feat-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.feat-sub li::before { content: '· '; }
.membership-extras {
  background: rgba(255,255,255,0.08);
  border-radius: 0.875rem;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}
.membership-footer {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.25rem;
  text-align: center;
}
.membership-footer .small { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-bottom: 0.3rem; }
.membership-footer .phone { font-weight: 800; font-size: 1.15rem; }

/* ══════════════════════════════════════════════════
   6. BOOKING
══════════════════════════════════════════════════ */
#book {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
#book::before {
  content: '';
  position: absolute;
  top: -8rem; right: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(40px);
}
#book::after {
  content: '';
  position: absolute;
  bottom: -10rem; left: -10rem;
  width: 32rem; height: 32rem;
  background: rgba(230,171,0,0.15);
  border-radius: 50%;
  filter: blur(60px);
}
.book-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.book-left { color: var(--white); min-width: 0; }
.book-left h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.25rem; overflow-wrap: break-word; word-break: break-word; }
.book-left p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; line-height: 1.7; overflow-wrap: break-word; }
.book-packages { display: flex; flex-direction: column; gap: 1.5rem; }
.pkg {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pkg-num {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.pkg h4 { font-family: var(--font-disp); font-size: 1.2rem; margin-bottom: 0.2rem; }
.pkg p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

.book-form-wrap {
  background: var(--white);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 0;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  padding: 0 1rem;
  height: 3rem;
  color: var(--accent);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.form-error {
  font-size: 0.8rem;
  color: hsl(0, 84%, 60%);
  display: none;
}
.form-error.show { display: block; }
.btn-whatsapp {
  width: 100%;
  height: auto;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.35;
  white-space: normal;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0.875rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.88; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════
   7. RESTAURANT
══════════════════════════════════════════════════ */
.restaurant-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.menu-card .card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.menu-card h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.menu-card .card-tag {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.menu-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.menu-card li span:first-child { color: rgba(15,30,60,0.75); }
.menu-card li .price { font-weight: 800; color: var(--primary); flex-shrink: 0; margin-left: 0.5rem; }

/* Full menu toggle */
.menu-toggle-wrap { text-align: center; margin-bottom: 2rem; }
.btn-toggle-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(15,30,60,0.2);
  transition: opacity 0.2s;
}
.btn-toggle-menu:hover { opacity: 0.88; }
.btn-toggle-menu .chevron {
  font-style: normal;
  transition: transform 0.3s;
  display: inline-block;
}
.btn-toggle-menu.open .chevron { transform: rotate(90deg); }

/* Full menu panel */
#full-menu {
  max-width: 900px;
  margin: 0 auto;
  display: none;
}
#full-menu.open {
  display: block;
  animation: menuFadeIn 0.35s ease;
}
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.full-menu-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.full-menu-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
  border: none;
  text-align: left;
}
.accordion-trigger:hover { background: var(--bg); }
.accordion-trigger .acc-chevron {
  font-style: normal;
  transition: transform 0.3s;
  font-size: 1.1rem;
  color: var(--muted);
}
.accordion-item.open .accordion-trigger .acc-chevron { transform: rotate(180deg); }
.accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
}
.accordion-item.open .accordion-content { display: block; }
.acc-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.acc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.acc-item:last-child { border-bottom: none; }
.acc-item span:first-child { color: rgba(15,30,60,0.75); }
.acc-item .price { font-weight: 800; color: var(--primary); }
.acc-sub-heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0.75rem 0 0.5rem;
}

.menu-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* ══════════════════════════════════════════════════
   8. CONTACT
══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.map-wrap {
  height: 480px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-ico {
  width: 3rem; height: 3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.contact-item h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.contact-item p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
}
.contact-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ══════════════════════════════════════════════════
   9. FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--accent);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}
.footer-logo {
    height: 36px; /* try 28px–36px */
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-brand .brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.brand-star {
  width: 2rem; height: 2rem;
  /*background: var(--primary);
  border-radius: 0.5rem;*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.social-links { display: flex; gap: 0.75rem; }

.social-links .fa-instagram {
    font-size: 2.2rem;
    color: #E4405F;
}

.social-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: background 0.2s;
  text-decoration: none;
}
.social-btn:hover { background: var(--primary); }
.footer-col h4 {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-col li a,
.footer-col li button {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: color 0.2s;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
}
.footer-col li a:hover,
.footer-col li button:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 240px; order: 2; margin-bottom: 5rem; }
  .contact-details { order: 1; }
  .book-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  border-radius: 999px;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, padding 0.3s;
  animation: waPulse 2.8s ease-in-out infinite;
  overflow: hidden;
  max-width: 56px;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  max-width: 220px;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
}
.wa-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.wa-float__label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}
.wa-float:hover .wa-float__label {
  max-width: 160px;
  opacity: 1;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .book-form-wrap { padding: 1.5rem; }
  #book { padding: 4rem 0; }
  .acc-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline-white { width: 100%; }
}

/* Offset for fixed navbar */
#pricing,
#contact {
    scroll-margin-top: 100px;
}

#about {
    scroll-margin-top: 40px;
}

#play-area {
    scroll-margin-top: 40px;
}

#restaurant {
    scroll-margin-top: 50px;
}

#membership {
    scroll-margin-top: 50px;
}

