/* =============================================
   BY HANNAH BEAUTY — Landing Page Styles
   Aesthetic: Coquette · Pastel · Feminine
   ============================================= */

:root {
  --blue: #8B9FDE;
  --blue-light: #b8c5f0;
  --blue-pale: #eef1fc;
  --pink: #F7D6D6;
  --pink-dark: #e8b4b4;
  --white: #ffffff;
  --navy: #1C1C3A;
  --navy-soft: #3a3a5c;
  --gold: #C9A84C;
  --text: #2d2d4e;
  --text-light: #6b6b8a;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 24px 100px;
}

/* Polka dot overlay */
.polka-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.25) 2px, transparent 2px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bow {
  font-size: 48px;
  margin-bottom: 4px;
  animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand-by {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-beauty {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--pink);
  font-weight: 600;
  line-height: 1;
}

.tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.location {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  min-height: 52px;
  line-height: 1.2;
}

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

.btn-primary {
  background-color: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-weight: 600;
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* =============================================
   ABOUT
   ============================================= */

.about {
  background: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--pink-dark);
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

/* =============================================
   SERVICES
   ============================================= */

.services {
  background: var(--blue-pale);
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--pink));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0 28px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 20px;
  border: 1.5px solid var(--blue-light);
  box-shadow: 0 2px 16px rgba(139, 159, 222, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(139, 159, 222, 0.22);
}

.service-card--wide {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}

.service-price {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.service-price strong {
  color: var(--blue);
  font-weight: 600;
  font-size: 1rem;
}

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

.services-note a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}

/* =============================================
   FIND US
   ============================================= */

.find-us {
  background: var(--white);
  padding: 70px 0;
  text-align: center;
}

.address-block {
  font-style: normal;
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin: 0 auto 16px;
}

.address-block strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
}

.find-us-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 300;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 40px 24px;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--blue-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 600px) {
  .hero {
    padding: 40px 20px 80px;
  }

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

  .service-card--wide {
    grid-column: 1;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
