/* ============================================================
   HeartScript — Stylesheet
   Fonts: The Seasons / Cormorant Garamond / Playfair Display (headings)
           Belleza (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --ivory:      #FFFFFF;
  --cream:      #F9F9F9;
  --rose:       #B76E79;
  --rose-light: #E8C5CB;
  --rose-deep:  #8A4A54;
  --gold:       #C4A882;
  --gold-light: #F3EEE8;
  --dark:       #2C1A1E;
  --muted:      #7A6068;
  --white:      #FFFFFF;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ivory);
  color: var(--dark);
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'The Seasons', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ===== LAYOUT ===== */
.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

.container-main {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ===== NAVIGATION ===== */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rose-light);
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-link:hover            { color: var(--rose); }
.nav-link:hover::after     { width: 100%; }

.nav-sub-tagline {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: -2px;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-pill {
  display: inline-flex;
  border: 1px solid var(--rose-light);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
}
.lang-btn {
  padding: 5px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
.lang-btn.active {
  color: var(--rose);
  font-weight: 600;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #FFFFFF 0%, #F7F7F7 70%);
}

.hero-mini-line {
  font-family: 'The Seasons', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
  font-size: 1.2rem;
  line-height: 2;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--rose);
  color: var(--white);
  border-radius: 999px;
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--rose);
  color: var(--white);
  transform: scale(1.02);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(44, 26, 30, 0.05);
  border-top: 3px solid var(--rose-light);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 26, 30, 0.1);
  border-top-color: var(--rose);
}

/* ===== WHO I HELP PILLS ===== */
.who-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--rose-light);
  border-radius: 999px;
  color: var(--rose);
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* ===== STAT PILLS ===== */
.stat-pill {
  background: var(--gold-light);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(44, 26, 30, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 26, 30, 0.1);
}
.testimonial-deco {
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 6rem;
  color: var(--rose-light);
  opacity: 0.15;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ===== CONTACT FORM ===== */
.form-field {
  width: 100%;
  padding: 12px 4px;
  border: none;
  border-bottom: 1.5px solid var(--rose-light);
  background: transparent;
  font-family: 'Belleza', 'Gill Sans', Optima, sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all 0.3s ease;
  outline: none;
  border-radius: 0;
}
.form-field:focus {
  border-bottom-color: var(--rose);
}
.form-field::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

/* ===== WAVE DIVIDERS ===== */
.wave-top,
.wave-bottom {
  display: block;
  width: 100%;
  line-height: 0;
}
.wave-top svg,
.wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== SCROLL FADE-IN ===== */
.fade-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
