/* ============================================
   AYESHAH'S CHILDCARE SERVICES
   Global Stylesheet — extracted from approved mockup v10
   ============================================ */


/* =====================
   PASTEL / BEIGE THEME
   Inspired by original site colours
   ===================== */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  /* Backgrounds — all warm pastel */
  --beige:       #f7f3ed;
  --beige-d:     #efe8dc;
  --beige-dd:    #e6ddd0;
  --white:       #fffef9;

  /* Pastels — soft sage greens */
  --green:       #4a7f8f;
  --green-d:     #3a6878;
  --green-dk:    #4a7f8f;
  --green-light: #82b4c0;
  --green-pale:  #cce0e8;

  /* Soft rose from logo */
  --rose:        #c4787a;
  --rose-pale:   #f5e4e4;

  /* Pastel fills */
  --pastel-green: #e4eef2;
  --pastel-rose:  #f5eaea;
  --pastel-blue:  #eaf0f7;
  --pastel-gold:  #f7f2e6;

  /* Text */
  --text:   #1a1410;
  --body:   #2e261e;
  --muted:  #5a4f44;
  --border: #d8d0c4;
  --btn:    #c8a96e;
  --btn-d:  #b8924e;

  /* Aliases used by homepage & inner pages */
  --forest:     #3a6878;   /* = --green-d */
  --forest-mid: #4a7f8f;   /* = --green */
  --cream:      #fffef9;   /* = --white */
  --cream-dark: #efe8dc;   /* = --beige-d */
  --gold:       #c8a96e;   /* = --btn */
  --gold-light: #e8c88a;
  --gold-pale:  #f7f2e6;   /* = --pastel-gold */
  --sage:       #4a7f8f;   /* = --green */
  --sage-light: #82b4c0;   /* = --green-light */
  --peach:      #f5e4e4;   /* = --rose-pale */
  --text-dark:  #1a1410;   /* = --text */
  --text-body:  #2e261e;   /* = --body */
  --text-muted: #5a4f44;   /* = --muted */
  --radius:     10px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #ede6da;
}

.site {
  width: 100%;
  max-width: 960px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  font-family: Georgia, serif;
}

/* ===== NAV (BEM) ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 28px;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo img { height: 46px; width: auto; }
.nav__logo-name { font-size: 14px; font-weight: 700; color: var(--green-d); font-family: Georgia, serif; }
.nav__logo-sub { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav__links a { font-size: 13px; color: var(--muted); text-decoration: none; font-family: 'Segoe UI', sans-serif; transition: color .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--green-d); }
.nav__links .nav__cta { background: var(--btn); color: #fff; padding: 8px 20px; border-radius: 20px; font-weight: 600; font-size: 13px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--green-d); border-radius: 2px; transition: .3s; }
.nav__mobile { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 32px 28px; flex-direction: column; gap: 16px; z-index: 99; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 15px; color: var(--body); text-decoration: none; font-family: 'Segoe UI', sans-serif; }
.nav__mobile .nav__cta { background: var(--btn); color: #fff; padding: 10px 22px; border-radius: 20px; font-weight: 600; width: fit-content; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: var(--green-d);
  background-image: url('images/FC33A82C-16B5-4B39-AB72-EF4E52E7FBEF.jpeg');
  background-size: cover;
  background-position: 30% center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,48,58,0.68) 0%,
    rgba(26,48,58,0.48) 40%,
    rgba(26,48,58,0.15) 100%
  );
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hero h1 em { color: var(--green-light); font-style: italic; }
.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 14px;
  display: block;
}
.hero__deck {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 28px;
  font-family: 'Segoe UI', sans-serif;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__bg-pattern { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; }
.hero__leaf { position: absolute; pointer-events: none; opacity: 0.12; }
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Segoe UI', sans-serif;
  pointer-events: none;
}
.hero__scroll-arrow {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
}


/* ===== STATS ===== */
.stat-block { text-align: center; padding: 8px; }
.stat-number { font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1; font-family: Georgia, serif; margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-family: 'Segoe UI', sans-serif; line-height: 1.4; }


/* ===== ABOUT — large panel, photo transparent on green ===== */
.about {
  background: var(--green);
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 320px;
  border-bottom: 1px solid var(--green-dk);
}
.about-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--green-d), var(--green));
}
.about-img img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.about-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.al { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--green-light); font-weight: 700; font-family: 'Segoe UI', sans-serif; margin-bottom: 8px; }
.ah { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.ap { font-size: 11px; color: rgba(255,255,255,.75); line-height: 1.75; font-family: 'Segoe UI', sans-serif; margin-bottom: 12px; }
.atags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.atag {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  font-size: 11px;
  padding: 4px 11px;
  color: rgba(255,255,255,.85);
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
}
.amotto {
  background: rgba(0,0,0,.2);
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 3px solid var(--green-light);
}
.amotto p { font-size: 13px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.6; }
.amotto span { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-light); margin-top: 6px; font-style: normal; font-family: 'Segoe UI', sans-serif; }

/* ===== GALLERY ===== */
.gallery { background: var(--beige); padding: 32px 28px; border-bottom: 1px solid var(--border); }
.sec-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); font-weight: 700; font-family: 'Segoe UI', sans-serif; margin-bottom: 6px; }
.sec-h { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 8px;
}
.gi { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.gi img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gi.tall { grid-row: span 2; }
.gc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,30,25,.65));
  font-size: 11px;
  color: rgba(255,255,255,.95);
  padding: 18px 8px 6px;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== FEATURES ===== */
.features { background: var(--white); padding: 32px 28px; border-bottom: 1px solid var(--border); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.fc {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  border-top: 3px solid var(--green-light);
}
.fc-icon {
  width: 36px; height: 36px;
  background: var(--pastel-green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.fc-h { font-size: 13px; font-weight: 700; color: var(--green-d); margin-bottom: 5px; }
.fc-p { font-size: 12px; color: var(--muted); line-height: 1.55; font-family: 'Segoe UI', sans-serif; }

/* ===== TESTIMONIALS ===== */
.tests { background: var(--pastel-green); padding: 32px 28px; border-bottom: 1px solid var(--green-pale); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.tc {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: 10px;
  padding: 16px;
  position: relative;
}
.tq { font-size: 32px; color: var(--green-pale); font-family: Georgia, serif; line-height: 1; position: absolute; top: 6px; left: 12px; }
.tt { font-size: 12px; color: var(--body); line-height: 1.65; padding-top: 20px; margin-bottom: 12px; font-family: 'Segoe UI', sans-serif; }
.ta { display: flex; align-items: center; gap: 8px; padding-top: 10px; border-top: 1px solid var(--green-pale); }
.av { width: 28px; height: 28px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; }
.an { font-size: 12px; font-weight: 700; color: var(--text); }
.as { font-size: 11px; color: var(--green); }

/* ===== CTA ===== */
.cta { background: var(--green-d); padding: 36px 28px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--green-light); font-weight: 700; font-family: 'Segoe UI', sans-serif; margin-bottom: 8px; }
.cta-h { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta-p { font-size: 11px; color: rgba(255,255,255,.5); font-family: 'Segoe UI', sans-serif; line-height: 1.65; }
.cta-bs { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.cb1 { background: var(--btn); color: #fff; font-size: 11px; padding: 11px 20px; border-radius: 20px; font-weight: 600; text-align: center; font-family: 'Segoe UI', sans-serif; }
.cb2 { border: 1.5px solid var(--btn); color: var(--btn); font-size: 11px; padding: 10px 20px; border-radius: 20px; text-align: center; font-family: 'Segoe UI', sans-serif; }
.cta-phone { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; font-family: 'Segoe UI', sans-serif; margin-top: 2px; }

/* ===== FOOTER ===== */
.footer { background: var(--green-d); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand-name { font-size: 1rem; font-weight: 700; color: #fff; font-family: Georgia, serif; margin-bottom: 4px; }
.footer__brand-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-light); margin-bottom: 14px; font-family: 'Segoe UI', sans-serif; }
.footer__desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-family: 'Segoe UI', sans-serif; }
.footer__heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-family: 'Segoe UI', sans-serif; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; font-family: 'Segoe UI', sans-serif; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__contact { display: flex; flex-direction: column; gap: 11px; }
.footer__contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-family: 'Segoe UI', sans-serif; }
.footer__contact-item svg { width: 14px; height: 14px; stroke: var(--green-light); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }
.footer__bottom { padding: 20px 0; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.3); font-family: 'Segoe UI', sans-serif; flex-wrap: wrap; gap: 8px; }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===== LABEL (section eyebrow) ===== */
.label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 8px;
  display: block;
}

/* ===== PARAGRAPH & HEADING SPACING ===== */
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { margin-bottom: 0.5em; line-height: 1.3; }

/* ===== SECTION PADDING ===== */
/* All named sections default to 80px vertical padding */
.about-intro, .philosophy, .daily, .credentials,
.testimonials, .testimonials-full, .features,
.banner, .home-cta, .stats, .gallery-strip,
.article-body, .contact-body { padding: 80px 0; }
.about-intro { background: var(--white); }
.philosophy   { background: var(--cream-dark); }
.daily        { background: var(--white); }
.credentials  { background: var(--white); border-top: 1px solid var(--border); }
.testimonials { background: var(--cream-dark); }
.testimonials-full { background: var(--cream-dark); }
.features     { background: var(--white); }
.gallery-strip { background: var(--beige); padding: 56px 0; }
.banner       { background: var(--forest); }
.home-cta     { background: var(--beige); }
.contact-body { background: var(--beige); }
.article-body { background: var(--beige); }
@media(max-width:600px) {
  .about-intro, .philosophy, .daily, .credentials,
  .testimonials, .testimonials-full, .features,
  .banner, .home-cta, .article-body { padding: 52px 0; }
}



/* ============================================
   COPY PROTECTION
   ============================================ */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  pointer-events: none;
}
a img { pointer-events: auto; }
@media print { body { display: none !important; } }

/* ============================================
   SHARED PAGE COMPONENTS
   ============================================ */

/* Page hero for inner pages */
.page-hero {
  background: var(--green-d);
  padding: 120px 28px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(130,180,192,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
}
.page-hero .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section spacing */
.section { padding: 72px 0; }
.section--beige { background: var(--beige); }
.section--white { background: var(--white); }
.section--pastel { background: var(--pastel-green); }
.section--teal { background: var(--green); color: #fff; }
.section--teal-d { background: var(--green-d); color: #fff; }

/* Section labels */
.sec-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 8px;
}
.sec-label--light { color: var(--green-light); }
.sec-h {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.sec-h--light { color: #fff; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--gold { background: var(--btn); color: #fff; }
.btn--primary { background: var(--btn); color: #fff; }
.btn--outline { border: 1.5px solid var(--btn); color: var(--btn); background: transparent; }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,0.5); color: rgba(255,255,255,0.85); background: transparent; }
.btn--outline-dark { border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); background: transparent; }
.btn--teal { background: var(--green); color: #fff; }
.btn--lg { padding: 14px 32px; font-size: 0.95rem; }


/* Cards */
.card {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--green-light);
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
