@font-face {
  font-family: "Candelis Demo";
  src: url("fonts/CandelisDEMO-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #fff8fc;
  --surface: #ffffff;
  --surface-soft: #fff2f7;
  --ink: #2d2031;
  --muted: #6f5a69;

  --pink-main: #e574a4;
  --pink-soft: #dd8ab1;
  --pink-warm: #e48798;
  --lilac: #d3a5cb;
  --teal: #59b3b5;
  --yellow: #fec82d;
  --yellow-soft: #f1c15a;
  --peach: #e3a08b;

  --border: rgba(45, 32, 49, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-soft: 0 12px 30px rgba(229, 116, 164, 0.12);
  --shadow-card: 0 14px 30px rgba(45, 32, 49, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.page-bg {
  background:
    radial-gradient(circle at 15% 15%, rgba(229, 116, 164, 0.25), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(211, 165, 203, 0.35), transparent 25%),
    radial-gradient(circle at 50% 28%, rgba(241, 193, 90, 0.18), transparent 22%),
    linear-gradient(180deg, #fff7fb 0%, #fffafc 45%, #ffffff 100%);
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 252, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 116, 164, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 4px 0;
  gap: 12px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 72px;
  max-width: none;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(211, 165, 203, 0.24);
  outline: 1px solid rgba(229, 116, 164, 0.16);
  box-shadow: 0 6px 18px rgba(211, 165, 203, 0.18);
}

/* hamburger */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--pink-main);
}

/* hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background:
    linear-gradient(
      rgba(239, 177, 212, 0.85),
      rgba(255, 254, 248, 0.92)
    ),
    url("images/heroimg.jpeg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.45), transparent 34%);
  pointer-events: none;
}

.hero-centered {
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(229, 116, 164, 0.14);
  color: var(--pink-main);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-title {
  font-family: "Candelis Demo", cursive;
  letter-spacing: 0.02em;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  color: #ffffff;
  text-shadow:
    4px 4px 0 var(--teal),
    0 12px 28px rgba(229, 116, 164, 0.25);
}

.hero-description {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.08rem;
  color: var(--ink);
}

.hero-description-secondary {
  max-width: 560px;
  color: var(--muted);
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* buttons */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-cta,
.btn-small,
.btn {
  background: linear-gradient(180deg, #f16eb5 0%, #e574a4 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(229, 116, 164, 0.28);
}

.btn:hover {
  filter: brightness(1.03);
  box-shadow: 0 16px 30px rgba(229, 116, 164, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  border: 1px solid rgba(89, 179, 181, 0.28);
  box-shadow: 0 10px 20px rgba(89, 179, 181, 0.12);
}

.btn-small {
  padding: 11px 16px;
  font-size: 0.95rem;
}

/* layout sections */

.section {
  padding: 72px 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 245, 250, 0.6), rgba(255, 255, 255, 1));
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.subtext {
  max-width: 62ch;
  color: var(--muted);
  margin-bottom: 28px;
}

/* steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.step-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(229, 116, 164, 0.14);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  margin: 0 0 10px;
  color: var(--pink-main);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.step-card p:last-child {
  margin-bottom: 0;
}

/* cards */

.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(229, 116, 164, 0.14);
  box-shadow: var(--shadow-card);
}

.featured-card {
  transform: translateY(-6px);
  border: 2px solid rgba(89, 179, 181, 0.34);
}

.package-mini-tag {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.package-price {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--pink-main);
}

.list {
  margin: 0 0 22px;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
}

/* form */

.form-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(229, 116, 164, 0.14);
  box-shadow: 0 14px 30px rgba(45, 32, 49, 0.10);
  max-width: 760px;
}

.booking-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(45, 32, 49, 0.14);
  background: #ffffff;
  font: inherit;
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--pink-main);
  box-shadow: 0 0 0 4px rgba(229, 116, 164, 0.14);
}

.error-message {
  min-height: 1rem;
  font-size: 0.88rem;
  color: #d14d7d;
}

.form-success {
  margin-top: 14px;
  font-weight: 700;
  color: var(--teal);
}

/* booking note */

.booking-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 242, 247, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(229, 116, 164, 0.14);
}

.booking-note p {
  margin: 0 0 10px;
}

.booking-note p:last-child {
  margin-bottom: 0;
}

/* faq */

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 116, 164, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(255, 242, 247, 0.55);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--pink-main);
  margin-left: 12px;
  flex-shrink: 0;
}

/* back to top */

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #f16eb5 0%, #e574a4 100%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(229, 116, 164, 0.28);
  display: none;
  z-index: 200;
}

.back-to-top.show {
  display: block;
}

/* footer */

.site-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(229, 116, 164, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link,
.footer-links a {
  color: var(--pink-main);
  text-decoration: none;
  font-weight: 700;
}

.footer-link:hover,
.footer-links a:hover {
  text-decoration: underline;
}

/* policy box */

.policy-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.policy-box h3 {
  margin-top: 20px;
}

.policy-box p {
  margin-top: 5px;
  line-height: 1.6;
}

/* medium screens */

@media (max-width: 900px) {
  .steps,
  .card-row {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;  }

  .featured-card {
    transform: none;
  }
}

/* mobile nav */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 202;
  }

  .site-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100vh;
    background: rgba(255, 248, 252, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: -8px 0 24px rgba(45, 32, 49, 0.12);
    padding: 90px 20px 20px;
    transition: right 0.3s ease;
    z-index: 201;
  }

  .site-nav.nav-open {
    right: 0;
  }

  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .nav-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-link {
    width: auto;
    min-width: 56px;
    min-height: 56px;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 999px;
  }
}

/* small screens */

@media (max-width: 680px) {

  .hero-title {
    font-weight: 800;
  }

  .hero {
    padding: 90px 0 80px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .form-card {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  /* keep CTA buttons side by side */
  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .btn {
    padding: 12px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}