/* ============================================================
   Little Love Private Preschool – Minimal Stylesheet
   Clean, warm design: header + Instagram embed + CTA button.
   ============================================================ */

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

/* ---------- Custom Properties ---------- */
:root {
  --clr-primary:    #E87461;
  --clr-primary-dk: #D15A47;
  --clr-accent:     #7B6CF6;
  --clr-blush:      #FDEAE6;
  --clr-bg:         #FFF9F7;
  --clr-surface:    #FFFFFF;
  --clr-text:       #2D2B3D;
  --clr-text-muted: #6E6B80;

  --ff-heading: 'Outfit', sans-serif;
  --ff-body:    'Inter', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.06);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Header ---------- */
.site-header {
  width: 100%;
  background: linear-gradient(155deg, var(--clr-bg) 0%, var(--clr-blush) 50%, #F5E1FF 100%);
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.site-header::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,108,246,.12) 0%, transparent 70%);
  pointer-events: none;
}
.site-header::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,194,85,.12) 0%, transparent 70%);
  pointer-events: none;
}

.header__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.header__emoji {
  font-size: 2.2rem;
  margin-bottom: .6rem;
  letter-spacing: .3rem;
}

.header__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .4rem;
  background: linear-gradient(120deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__tagline {
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  color: var(--clr-text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.header__badges {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: .35rem .8rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
}

/* ---------- Main Content ---------- */
.main-content {
  flex: 1;
  width: 100%;
  max-width: 580px;
  padding: 1.5rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Instagram Embed ---------- */
.instagram-container {
  width: 100%;
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 500px;
}
.instagram-container iframe {
  width: 100% !important;
  border: 0 !important;
}

/* ---------- CTA Button ---------- */
.cta-wrapper {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  box-shadow: 0 4px 20px rgba(232,116,97,.3);
  transition: var(--transition);
  white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,116,97,.45);
}
.cta-button:active {
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .site-header { padding: 2rem 1rem 1.5rem; }
  .header__emoji { font-size: 1.8rem; }
  .badge { font-size: .72rem; padding: .3rem .6rem; }
  .cta-button { font-size: .92rem; padding: .8rem 1.6rem; }
}
