:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #ff8a00;
  --brand-2: #6c63ff;
  --accent: #00c2a8;
  --surface: #f7fafc;
  --surface-2: #ffffff;
  --ring: rgba(108, 99, 255, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9); backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid #eef2f7;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 40px;      /* Adjust size as needed */
  height: 40px;
  object-fit: contain;
  border-radius: 8px; /* optional, for rounded corners */
}
.brand-text { font-family: 'Fredoka', cursive; font-weight: 700; font-size: 20px; letter-spacing: .2px; }

.primary-nav { position: relative; }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 24px; }
.nav-menu { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; color: var(--text); font-weight: 600; }
.nav-menu a.cta { color: #fff; background: var(--brand-2); padding: 10px 14px; border-radius: 999px; }

/* Hero */
.hero { padding: 20px 0 20px; background: linear-gradient(180deg, #fff 0%, #f9fbff 100%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.hero-copy h1 { font-family: 'Fredoka', cursive; font-size: 48px; margin: 0 0 10px; }
.hero-copy p { color: var(--muted); font-size: 18px; margin: 0 0 22px; }
.hero-actions { display: flex; gap: 12px; }

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 100%;
  width: 300px;        /* adjust as needed */
  height: auto;
  border-radius: 16px; /* optional rounded corners */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* subtle shadow for modern look */
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05); /* slight zoom on hover */
}


.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; padding: 12px 18px; font-weight: 700; text-decoration: none; border: 2px solid transparent; cursor: pointer; }
.btn.primary { background: var(--brand); color: #111827; }
.btn.ghost { background: transparent; color: var(--brand-2); border-color: var(--brand-2); }
.btn:hover { filter: brightness(0.98); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }

.hero-art { position: relative; height: 320px; }
.cloud { position: absolute; background: #fff; border-radius: 999px; box-shadow: 0 2px 0 #e5e7eb inset; }
.cloud-1 { width: 160px; height: 50px; left: 10%; top: 20%; }
.cloud-2 { width: 220px; height: 60px; right: 10%; top: 35%; }
.sun { position: absolute; width: 90px; height: 90px; right: 12%; top: 12%; background: radial-gradient(circle at 30% 30%, #fff38a, #ffd24d 60%, #ffb200); border-radius: 50%; box-shadow: 0 0 40px #ffd24d; }
.hill { position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: radial-gradient(120% 120% at 50% 100%, #3cdbaa, #19c2b3 60%, #0fade0); border-top-left-radius: 50% 80px; border-top-right-radius: 50% 80px; }

/* Sections */
.section { padding: 20px 0; }
.section.alt { background: var(--surface); }
.section h2 { font-family: 'Fredoka', cursive; font-size: 34px; margin: 0 0 18px; }
.section p { color: var(--muted); }

.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface-2); border: 1px solid #eef2f7; border-radius: 16px; padding: 18px; box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; }

.grid.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.about-photo { background: linear-gradient(135deg, rgba(108,99,255,.15), rgba(255,138,0,.15)), url('https://images.unsplash.com/photo-1596464716121-f8b00b1f0c03?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat; border-radius: 16px; min-height: 280px; border: 1px solid #eef2f7; }

.checklist { list-style: none; padding: 0; margin: 12px 0 0; }
.checklist li { margin: 8px 0; padding-left: 28px; position: relative; }
.checklist li:before { content: '✔'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ✅ Fixed Gallery */
/* ✅ Modern Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px; /* uniform height */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.gallery-grid img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05); /* subtle zoom */
}

/* Fancy overlay glow */
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(108, 99, 255, 0.25), rgba(255, 138, 0, 0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid figure:hover::after {
  opacity: 1;
}


/* Schedule */
.schedule { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.slot { display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 10px; background: var(--surface-2); border: 1px solid #eef2f7; padding: 12px; border-radius: 12px; }
.slot strong { font-family: 'Fredoka', cursive; font-size: 18px; }

/* Testimonials */
.testimonial { background: var(--surface-2); border: 1px solid #eef2f7; padding: 16px; border-radius: 16px; margin: 0; }
.testimonial p { margin: 0 0 10px; }
.testimonial cite { color: var(--muted); font-style: normal; font-weight: 700; }

/* Form */
.inquiry-form { display: grid; gap: 14px; }
.inquiry-form label { display: grid; gap: 6px; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  appearance: none; background: #fff; border: 1px solid #d8dee6; border-radius: 12px; padding: 12px 14px; font: inherit; color: var(--text);
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); border-color: var(--brand-2); }
.inquiry-form .grid.two { gap: 14px; }
.inquiry-form .full { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; gap: 12px; }
#form-status { color: var(--muted); font-weight: 700; }

/* Footer */
.site-footer { border-top: 1px solid #eef2f7; padding: 28px 0; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 16px; }
.copyright { text-align: center; color: var(--muted); margin: 8px 0 0; font-size: 14px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .schedule { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: absolute; right: 0; top: 48px; flex-direction: column; align-items: flex-start; background: #fff; padding: 10px; border: 1px solid #eef2f7; border-radius: 12px; display: none; }
  .nav-menu.open { display: flex; }
  .cards.three { grid-template-columns: 1fr; }
  .grid.two { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .schedule { grid-template-columns: 1fr; }
}
