:root {
  --bg: #fffdf8;
  --card: #ffffff;
  --text: #3b3b3b;
  --muted: #6f6f6f;
  --yellow: #fff2b8;
  --pink: #ffd9e8;
  --green: #dff5d8;
  --border: #f3e9d7;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-text {
  color: var(--muted);
  max-width: 650px;
  font-size: 1.05rem;
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 233, 215, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  filter: blur(2px);
}

.hero::before {
  width: 260px;
  height: 260px;
  background: var(--yellow);
  top: -70px;
  left: -60px;
  opacity: 0.8;
}

.hero::after {
  width: 240px;
  height: 240px;
  background: var(--pink);
  right: -60px;
  top: 30px;
  opacity: 0.65;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  border: 1px solid #cde8c4;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--text);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: white;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--green);
  border-radius: 50%;
  bottom: -25px;
  right: -20px;
  opacity: 0.5;
  z-index: 0;
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  background: white;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.hero-logo-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  font-weight: 800;
  text-align: center;
}

/* ABOUT */
.about-card {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.about-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-box {
  padding: 18px;
  border-radius: 20px;
  font-weight: 800;
  border: 1px solid var(--border);
}

.about-box:nth-child(1) { background: var(--yellow); }
.about-box:nth-child(2) { background: var(--pink); }
.about-box:nth-child(3) { background: var(--green); }
.about-box:nth-child(4) { background: #fff7ef; }

/* SERVICES */
.services-header {
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.service-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.price-tag {
  display: inline-block;
  background: #fff7ea;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.package-card {
  margin-top: 22px;
  background: linear-gradient(135deg, #fffef9 0%, #fff7ed 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.package-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.package-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.package-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* INSTAGRAM */
.gallery-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.instagram-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.handle {
  font-weight: 900;
  padding: 10px 16px;
  background: var(--pink);
  border-radius: 999px;
  display: inline-block;
}

.gallery-placeholder {
  min-height: 340px;
  border: 2px dashed #e6dac8;
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  background:
    radial-gradient(circle at top left, rgba(255, 242, 184, 0.55), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 217, 232, 0.55), transparent 28%),
    white;
}

.gallery-placeholder h3 {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text);
}

/* AVAILABILITY */
.availability-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.availability-card,
.calendar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.availability-card h3,
.calendar-card h3,
.contact-info h3,
.contact-form h3 {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  margin-bottom: 12px;
}

.availability-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.availability-list li {
  background: #fffaf1;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.calendar-placeholder {
  min-height: 320px;
  border: 2px dashed #e6dac8;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  background: linear-gradient(180deg, #fffefb 0%, #fff8f0 100%);
}

.calendar-placeholder iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-info,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  background: #fffaf1;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
}

.contact-form form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fffefb;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ddc78d;
}

/* FORM ALERT */
#contact-alert {
  display: none;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.96rem;
  line-height: 1.5;
  border: 1px solid var(--border);
  font-weight: 700;
}

#contact-alert.loading {
  display: block;
  background: #fffaf1;
  color: var(--muted);
}

#contact-alert.success {
  display: block;
  background: #e8f8e3;
  border-color: #cde8c4;
  color: #2f6b2f;
}

#contact-alert.error {
  display: block;
  background: #ffe8e8;
  border-color: #f1bcbc;
  color: #a33a3a;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* FOOTER */
.footer {
  padding: 30px 0 50px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid,
  .about-card,
  .availability-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .package-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .services-grid,
  .package-list,
  .about-boxes,
  .hero-features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .about-card,
  .service-card,
  .package-card,
  .gallery-wrap,
  .availability-card,
  .calendar-card,
  .contact-info,
  .contact-form {
    padding: 22px;
  }
}