@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --pink: #FF69B4;
  --pink-light: #FFB6D3;
  --pink-pale: #FFF0F5;
  --purple: #7B2D8E;
  --purple-light: #A855C7;
  --yellow-soft: #FFFACD;
  --bg: #FFF5F9;
  --white: #ffffff;
  --text: #444;
  --text-light: #777;
  --shadow: 0 4px 20px rgba(123, 45, 142, 0.10);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- HEADER ---- */
header {
  background: linear-gradient(135deg, var(--pink-pale), var(--yellow-soft));
  border-bottom: 4px solid var(--pink);
  padding: 20px 0 10px;
  text-align: center;
}
.logo {
  width: 240px;
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(255,105,180,0.3));
}

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 28px 20px 8px;
  max-width: 700px;
  margin: 0 auto;
}
.hero h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 6px;
}
.hero p { font-size: 1.05rem; color: var(--text-light); }

/* ---- PRICE BANNER ---- */
.price-banner { text-align: center; padding: 10px 20px 24px; }
.pricelist-img {
  max-width: 380px;
  width: 90%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- BOOKING CARD ---- */
.booking-section {
  max-width: 500px;
  margin: 0 auto 36px;
  padding: 0 16px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border-top: 5px solid var(--pink);
}
.card h2 {
  text-align: center;
  color: var(--purple);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

/* ---- FORM GROUPS ---- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.price-tag {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 2px 10px;
  border-radius: 12px;
}
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--pink-light);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-group select:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(168,85,199,0.15);
}

/* Theme badge */
.theme-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 20px;
}
.date-desc {
  margin-top: 5px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

/* ---- STEPPER ---- */
.stepper {
  display: flex;
  align-items: center;
  border: 2px solid var(--pink-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.stepper input {
  width: 52px;
  text-align: center;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--purple);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.stepper-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: var(--pink-pale);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}
.stepper-btn:hover { background: var(--pink-light); }
.stepper-btn:active { background: var(--pink); color: var(--white); }

/* ---- PRICE DISPLAY ---- */
.price-display {
  text-align: center;
  padding: 18px 0 10px;
  border-top: 2px dashed var(--pink-light);
  margin-top: 10px;
}
.price-label { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.price-value { font-size: 2rem; font-weight: 800; color: var(--pink); margin-left: 8px; }

/* ---- PRIMARY BUTTON ---- */
.btn-primary {
  display: block;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 14px;
}
.btn-primary:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ---- SUCCESS OVERLAY ---- */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 20px;
}
.overlay-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.overlay-card .tick {
  width: 72px; height: 72px; line-height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6DD400, #34B233);
  color: white; font-size: 2.2rem;
  margin: 0 auto 16px;
}
.overlay-card h2 { color: var(--purple); margin-bottom: 10px; }
.overlay-card .detail {
  color: var(--text-light); font-size: 0.95rem;
  margin: 12px 0 22px; line-height: 1.6;
}

/* ---- TEXT INPUT (email etc) ---- */
.text-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #eadcf2;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.text-input:focus {
  outline: none;
  border-color: var(--purple);
}

.error-note {
  color: #c0392b;
  background: #fdecea;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */
footer {
  margin-top: auto;
  text-align: center;
  padding: 18px 10px;
  background: linear-gradient(135deg, var(--pink-pale), var(--yellow-soft));
  border-top: 4px solid var(--pink);
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 500px) {
  .hero h2 { font-size: 1.2rem; }
  .card { padding: 20px 16px; }
  .price-value { font-size: 1.5rem; }
  .logo { width: 180px; }
}
