:root {
  --yellow: #ffcc00;
  --yellow-dark: #f5a623;
  --green: #4caf50;
  --green-dark: #2e7d32;
  --red: #ef4444;
  --red-dark: #c62828;
  --blue: #2196f3;
  --ink: #22303c;
  --ink-soft: #55636e;
  --paper: #fffdf7;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(34, 48, 60, 0.12);
  --radius: 20px;
  --font-display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(239, 68, 68, 0.45); }
.btn-primary:active { transform: translateY(0) scale(0.96); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35); transition-duration: .1s; }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.96); transition-duration: .1s; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--yellow);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(34, 48, 60, 0.1);
  border-bottom-color: rgba(255, 204, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: padding .35s var(--ease);
}
.site-header.is-scrolled .header-inner { padding-top: 8px; padding-bottom: 8px; }
.site-header.is-scrolled .logo img { height: 40px; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--red-dark);
  margin-right: auto;
}
.logo img { height: 48px; width: auto; border-radius: 10px; transition: height .35s var(--ease); }
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-weight: 700;
  color: var(--ink-soft);
}
.main-nav a:hover { color: var(--red); }
.phone-pill {
  font-weight: 700;
  background: var(--yellow);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-book-btn { white-space: nowrap; }

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 70px;
  background: linear-gradient(135deg, var(--green-dark), var(--green) 55%, var(--yellow-dark));
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "🎈🎉🧸🎨";
  position: absolute;
  right: -20px;
  top: 20px;
  font-size: 4rem;
  opacity: 0.18;
  letter-spacing: 20px;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 720px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 18px;
  color: #fff3b0;
}
.hero-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  opacity: 1;
  max-width: 560px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.12);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Intro */
.intro { padding: 60px 0 20px; text-align: center; }
.intro-inner { max-width: 720px; margin: 0 auto; }
.intro h2 { color: var(--red-dark); font-size: 2rem; }
.intro p {
  font-family: var(--font-display);
  font-weight: 500;
  color: #1565c0;
  font-size: 1.15rem;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--red-dark);
}
.section-sub {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Gallery */
.gallery-section { padding: 60px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .35s var(--ease);
}
.gallery-item:hover { box-shadow: 0 16px 34px rgba(34,48,60,0.2); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Packages */
.packages-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff, #fff8e6);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.package-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}
.package-card:nth-child(3n+1) { background: linear-gradient(160deg, #fff, #e2f0ff); border-color: #a8d2ff; }
.package-card:nth-child(3n+2) { background: linear-gradient(160deg, #fff, #fff3c4); border-color: #ffe089; }
.package-card:nth-child(3n+3) { background: linear-gradient(160deg, #fff, #ffe0e0); border-color: #ffb3b3; }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(34,48,60,0.16); }
.package-card:active { transform: translateY(-2px) scale(0.98); transition-duration: .1s; }
.package-card.is-active { border-color: var(--red); box-shadow: 0 12px 26px rgba(239,68,68,0.25); }
.package-card.is-featured { background: linear-gradient(160deg, #fff8e6, #ffe9c2); }
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(239,68,68,0.4);
}
.package-icon { font-size: 2.6rem; margin-bottom: 10px; }
.package-card h3 { color: var(--red-dark); font-size: 1.3rem; }
.package-desc { color: var(--green-dark); font-weight: 700; font-size: 0.95rem; margin: 0 0 10px; }
.package-price-mini { font-family: var(--font-display); font-weight: 700; color: var(--green-dark); font-size: 1.1rem; }

/* Package detail panel */
.package-details { margin-bottom: 10px; }
.package-panel {
  background: linear-gradient(135deg, #fff9e6, #eafbe0 55%, #e6f4ff);
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  animation: pop .18s ease;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.panel-head h3 { color: var(--red-dark); margin: 0; }
.panel-star { display: block; font-size: 0.9rem; color: var(--yellow-dark); font-family: var(--font-body); font-weight: 700; }
.panel-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
}
.panel-price span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.panel-note { text-align: center; color: #1565c0; font-weight: 700; margin: 18px 0; }
.panel-note strong { color: var(--red-dark); }
.package-panel .btn { display: flex; margin: 0 auto; }

.package-includes {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.package-includes h3 {
  text-align: center;
  color: var(--green-dark);
  font-size: 1.4rem;
}
.includes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.include-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  border-radius: 18px;
  padding: 18px 16px;
  border: 3px solid transparent;
  flex: 0 1 calc(33.333% - 14px);
  min-width: 200px;
}
.include-item:nth-child(4n+1) { background: #fff6d6; border-color: var(--yellow); }
.include-item:nth-child(4n+2) { background: #e0f7e4; border-color: var(--green); }
.include-item:nth-child(4n+3) { background: #e2f0ff; border-color: var(--blue); }
.include-item:nth-child(4n+4) { background: #ffe3e3; border-color: var(--red); }
.include-icon { font-size: 1.8rem; }
.include-item strong:nth-of-type(1) { display: block; margin-bottom: 2px; }
.include-item:nth-child(4n+1) strong { color: var(--yellow-dark); }
.include-item:nth-child(4n+2) strong { color: var(--green-dark); }
.include-item:nth-child(4n+3) strong { color: #1565c0; }
.include-item:nth-child(4n+4) strong { color: var(--red-dark); }
.include-item p { margin: 0; font-size: 0.9rem; color: var(--ink); font-weight: 600; }

.price-box {
  text-align: center;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.price-tag {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--red-dark);
}
.price-tag span { font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.price-box p { color: var(--ink); margin: 10px 0 20px; }

/* Reviews */
.reviews-section { padding: 60px 0; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.reviews-score-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
}
.reviews-score-big span { color: var(--yellow-dark); }
.stars { color: var(--yellow-dark); font-size: 1.2rem; letter-spacing: 2px; }
.reviews-sub { color: var(--ink-soft); margin: 4px 0 6px; }
.reviews-link { color: var(--blue); font-weight: 700; }

.reviews-fb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #e7f3ff;
  border: 2px solid #1877f2;
  border-radius: 999px;
  padding: 10px 22px;
  max-width: fit-content;
  margin: -16px auto 40px;
  font-weight: 700;
  color: #0f5cc9;
  font-size: 0.95rem;
}
.fb-icon { font-size: 1.1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: #1565c0;
  margin: 10px 0 14px;
}
.review-author { font-weight: 700; margin: 0; color: var(--green-dark); }
.review-author span { font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); }

/* Contact */
.contact-section { padding: 70px 0; background: #fff8e6; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; }
.contact-list li { margin-bottom: 12px; font-size: 1.05rem; }
.contact-list a { color: var(--blue); font-weight: 700; }
.social-links { display: flex; gap: 14px; margin-bottom: 24px; }
.social-links a {
  background: var(--card);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.contact-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.map-open-link {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.map-open-link:hover { transform: translateY(-2px); background: var(--yellow); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 32px 0;
}
.footer-logo { height: 44px; margin: 0 auto 12px; border-radius: 8px; }
.site-footer p { margin: 0; opacity: 0.8; font-size: 0.9rem; }

/* Floating booking button */
.floating-book-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.45);
  cursor: pointer;
  animation: pulse 2.4s infinite;
}
.floating-book-btn:hover { transform: translateY(-2px); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(239, 68, 68, 0.45); }
  50% { box-shadow: 0 10px 34px rgba(239, 68, 68, 0.7); }
}

/* Booking modal */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-modal[hidden] { display: none; }
.book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 48, 60, 0.55);
}
.book-modal-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
  animation: pop .18s ease;
}
@keyframes pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.book-modal-panel h3 { color: var(--red-dark); font-size: 1.5rem; }
.book-modal-panel > p { color: var(--ink-soft); margin-bottom: 24px; }
.book-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f1f1;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}
.book-options { display: flex; flex-direction: column; gap: 14px; }
.book-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff8e6;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  transition: transform .15s ease, background .15s ease;
}
.book-option:hover { transform: translateY(-2px); background: #ffedb0; }
.book-option-icon { font-size: 1.8rem; }
.book-option strong { display: block; font-size: 1.05rem; color: var(--ink); }
.book-option small { color: var(--ink-soft); }

/* Gallery lightbox */
.gallery-item img { transition: transform .3s ease; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 20, 0.9);
}
.lightbox-img {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: pop .18s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 201;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 201;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 560px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .include-item { flex-basis: calc(50% - 10px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .phone-pill { display: none; }
}
@media (max-width: 560px) {
  .packages-grid { grid-template-columns: 1fr; }
  .include-item { flex-basis: 100%; }
  .hero { padding: 70px 0 50px; }
  .floating-book-btn span { display: none; }
  .floating-book-btn { padding: 16px; }
}
