/* =============================================
   THEME: Soft Blush
   Gentle, feminine — beauty, wellness, reflexology
   Font Pairing: Playful (Baloo 2 + Nunito)
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&family=Nunito:wght@400;500;600;700&display=swap');

/* --- Theme Variables --- */
:root {
  /* Colour Palette */
  --color-primary: #C4728A;
  --color-primary-light: #D49AAE;
  --color-primary-dark: #9E5670;
  --color-secondary: #A89ACD;
  --color-secondary-light: #C4B9DE;
  --color-secondary-dark: #7E6FA8;
  --color-accent: #C9A84C;
  --color-accent-light: #D4BA6E;

  --color-bg: #FDF9F8;
  --color-bg-alt: #F5EEEC;
  --color-bg-dark: #3D2E35;
  --color-surface: #FFFFFF;
  --color-surface-alt: #FAF5F3;

  --color-text: #3E3438;
  --color-text-light: #7A6B72;
  --color-text-inverse: #FDF9F8;
  --color-text-heading: #2D2228;

  --color-border: #E8DDD9;
  --color-border-light: #F2ECEA;

  --color-success: #7BAB84;
  --color-error: #C45B5B;

  /* Typography */
  --font-heading: 'Baloo 2', 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Heading Size Overrides */
  --text-h1-desktop: 2.5rem;
  --text-h2-desktop: 2rem;
  --text-h3-desktop: 1.5rem;
}

/* --- Theme Overrides --- */

/* Contact page headings — cap at --text-xl */
.contact-info h2,
.contact-form-wrap .card h2 {
  font-size: var(--text-xl);
}

/* Testimonial stars centering on centered sections */
.text-center .testimonial__stars,
.testimonial--standalone .testimonial__stars {
  justify-content: center;
}

/* Hero: taller on desktop */
@media (min-width: 768px) {
  .hero--half .hero__inner {
    min-height: 770px;
  }
}

/* Portrait image — taller on desktop */
@media (min-width: 768px) {
  .intro__image-wrap {
    min-height: 550px;
  }
}
