:root{
  /* Base */
  --bg: #f3f7fd;              /* ⬅️ soft blue page background */
  --text: #102a4d;     /* deep friendly navy */
  --muted: #4a6a92;    /* brighter but still calm */

  /* Surfaces */
  --card: #ffffff;
  --section-bg: #dbe9fb;      /* ⬅️ noticeably bluer sections */
  --border: rgba(15, 50, 120, .18);

  /* Brand blues – richer & more lively */
  --primary:   #2563eb;       /* vibrant but safe */
  --primary-2: #1e40af;
  --primary-3: #1e3a8a;

  --accent: #facc15;          /* warm yellow pop (optional) */

  --radius: 16px;
  --shadow: 0 12px 28px rgba(30, 64, 175, .25);

  /* Fonts */
  --font-body: "Quicksand", "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Baloo 2", "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  font-weight: 500;
  background:
    linear-gradient(
      180deg,
      #eaf2ff 0%,
      var(--bg) 220px
    );
  color: var(--text);
  line-height:1.55;
}

/* Display font usage */
h1, h2, h3,
.section-title,
.brand-name,
.nav-link, .dropdown-btn,
.btn, .mini-link, .badge,
.card-link,
.floating-contact{
  font-family: var(--font-display);
  letter-spacing:.15px;
}

/* Brighter heading color */
h1, h2, h3, .section-title{
  color: #0f3d7a;
}

p, li, .lead, .brand-sub{
  font-family: var(--font-body);
}

li{
  color: #163f73;
}

/* Subtle checklist styling (Homepage / simple list only)
   Use <ul class="checklist simple"> on pages that should use CSS checkmarks. */
.checklist.simple{
  list-style: none;
  padding-left: 0;
  margin: 14px 0 18px;
}

.checklist.simple li{
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  line-height: 1.5;
}

/* Soft blue checkmark */
.checklist.simple li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;

  font-weight: 900;
  font-size: 1.05rem;
  color: var(--primary);
}

.container{ width:min(1100px, 92vw); margin:0 auto; }

/* Global link colors */
a{ color: var(--primary-2); }
a:hover{ color: var(--primary); }

/* Accessibility */
.skip-link{ position:absolute; left:-999px; top:auto; }
.skip-link:focus{
  left:16px; top:16px;
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  box-shadow:var(--shadow);
}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

/* ================= HEADER ================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  padding:10px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:inherit;
  white-space: nowrap;
}
.brand-mark{
  width:38px;height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:var(--card);
  border:1px solid var(--border);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:800; }
.brand-sub{ font-size:.92rem; color:var(--muted); }

/* Nav toggle */
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  cursor:pointer;
  padding: 10px 12px;
}

/* Nav */
.site-nav .nav-list{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  list-style:none;
  margin:0;
  padding:0;
}

/* Normalize <a> + <button> so they align perfectly */
.nav-link,
.dropdown-btn{
  appearance:none;
  background:none;
  border:0;
  color:var(--text);
  text-decoration:none;
  font-weight:700;

  height:44px;
  padding:0 14px;
  border-radius:12px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
  position:relative;
  line-height: 1;

  transition: color 160ms ease;
}

/* Arrow */
.dropdown-btn span{
  display:inline-flex;
  align-items:center;
  margin-left: 6px;
  transition: transform 160ms ease;
}

/* underline */
.nav-link::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:6px;
  height:2px;
  background:var(--primary-2);
  border-radius:999px;

  transform:scaleX(0);
  transform-origin:center;
  transition:transform 180ms ease;
}
.nav-link:hover::after,
.nav-link:focus-visible::after{ transform:scaleX(1); }

/* hover + focus color */
.nav-link:hover,
.nav-link:focus-visible,
.dropdown-btn:hover,
.dropdown-btn:focus-visible{
  color:#1f5fa5;
}

/* Header CTA */
.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
}
.mini-link{
  height:40px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  color:var(--primary-2);
  font-weight:800;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  white-space: nowrap;
}
.mini-link:hover{ background:var(--card); }

/* ================= DROPDOWNS (FIXED) ================= */

.has-dropdown{ position:relative; }

/* Desktop dropdown card (animated) */
.dropdown{
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  min-width:240px;
  list-style:none;
  margin:0;
  padding:6px;

  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 10px 24px rgba(2,6,23,.12);

  display:none;
  opacity:0;
  transform: translateY(-6px);
  pointer-events:none;

  transition: opacity 160ms ease, transform 160ms ease;
  z-index:1000;
}

/* Invisible hover-bridge so menu doesn't close while moving cursor down */
.dropdown::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}

/* Mobile click-open (your JS toggles .open) */
.has-dropdown.open > .dropdown{
  display:block;
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Keyboard open */
.has-dropdown:focus-within > .dropdown{
  display:block;
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Desktop hover open */
@media (hover: hover) and (pointer: fine){
  .has-dropdown:hover > .dropdown{
    display:block;
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
  .has-dropdown:hover > .dropdown-btn span{
    transform: rotate(180deg);
  }
}

/* Dropdown links */
.dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
  transition: background 140ms ease, color 140ms ease;
}
.dropdown a:hover{
  background:rgba(47,127,207,.22);
  color:#1f5fa5;
}

/* ================= HERO ================= */

.hero{
  background:
    linear-gradient(
      180deg,
      rgba(37,99,235,.35),
      rgba(37,99,235,.18) 55%,
      rgba(243,247,253,1)
    );
}

.hero-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  padding:44px 0;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  color:var(--primary-2);
}

.hero h1{
  font-size:clamp(2rem,3.5vw,3rem);
  line-height:1.08;
  font-weight:800;
}

.lead{ color:var(--muted); max-width:56ch; }

.hero-media{
  height:320px;
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

/* Center the logo inside the hero box */
.hero-media.logo-box{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* Make the logo scale nicely within the box */
.hero-media.logo-box img{
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid var(--border);
}

.btn.primary{
  background:var(--primary);
  color:#fff;
  box-shadow: 0 6px 16px rgba(47,127,207,.25);
}
.btn.primary:hover{
  background:var(--primary-2);
  box-shadow: 0 8px 20px rgba(47,127,207,.35);
}

.btn.ghost{
  background:#fff;
  color:var(--text);
}
.btn.ghost:hover{ background:var(--card); }

/* ================= SECTIONS ================= */

.section{ padding:52px 0; }
.section.alt{
  background:
    linear-gradient(
      180deg,
      var(--section-bg),
      #cfe1fb
    );
  border-top: 1px solid rgba(30,64,175,.25);
  border-bottom: 1px solid rgba(30,64,175,.25);
}

.section-title{ margin:0 0 8px; font-size:1.6rem; font-weight:800; }
.section-sub{ margin:0 0 22px; color:var(--muted); }

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  text-decoration:none;
  color:inherit;
  transition:.18s ease;
  box-shadow:0 2px 0 rgba(2,6,23,.04);
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

.card h3{ margin:0 0 8px; font-weight:800; }
.card p{ margin:0 0 10px; color:var(--muted); }
.card-link{ font-weight:900; color:var(--primary-2); }

/* ================= SECTION WAVES ================= */

.wave-divider{
  line-height: 0;
  width: 100%;
  overflow: hidden;
}

.wave-divider svg{
  display: block;
  width: 100%;
  height: 48px;
}

@media (min-width: 900px){
  .wave-divider svg{ height: 64px; }
}

/* ================= SPLIT + PANEL (Quick Links box) ================= */

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}

.panel{
  background: #ffffff;
  border: 1px solid rgba(30,64,175,.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(30,64,175,.10);
}

/* Quick links list */
.link-list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
}

.link-list li{ margin:10px 0; }

.link-list a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  color: var(--primary-2);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.12);
  transition: transform 160ms ease, background 160ms ease;
}

.link-list a:hover{
  background: rgba(37,99,235,.14);
  transform: translateY(-1px);
}

@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

/* ================= PROGRAM PAGE IMAGES ================= */

.program-image{
  display:block;
  width:100%;
  max-width:520px;
  height:auto;
  margin:18px auto;
  border-radius:var(--radius);
  border:1px solid rgba(30,64,175,.18);
  box-shadow:0 10px 24px rgba(30,64,175,.18);
  background:#fff;
}

/* ================= POLICY PAGE IMAGES ================= */

.policy-image{
  display:block;
  max-width:520px;
  width:100%;
  height:auto;
  margin:14px auto 22px;
  border-radius:var(--radius);
  box-shadow:0 8px 24px rgba(2,6,23,.12);
}

/* ================= PROGRAM PAGE IMAGE ROW ================= */

.image-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  margin: 18px auto;
  max-width: 820px;
}

.image-row img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(30,64,175,.18);
  box-shadow: 0 10px 24px rgba(30,64,175,.18);
  background: #fff;
}

@media (max-width: 900px){
  .image-row{ grid-template-columns: 1fr; }
}

/* ================= PRESCHOOL GRADUATION IMAGE STRIP ================= */

.graduation-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 28px auto 10px;
}

.graduation-row img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(30,64,175,.18);
  box-shadow: 0 10px 24px rgba(30,64,175,.18);
  background: #fff;
}

@media (max-width: 900px){
  .graduation-row{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ================= FUN FLOATERS (HOMEPAGE) ================= */

.fun-floaters{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

main, .site-footer{
  position: relative;
  z-index: 1;
}

.floater{
  position: absolute;
  font-size: 30px;
  opacity: 0.32;
  filter: saturate(1.1);
  transform: translate3d(0,0,0);
  animation: none;
  user-select: none;
  text-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.f1{ left: 6%;  top: 18%; font-size: 30px; }
.f2{ left: 18%; top: 62%; font-size: 30px; }
.f3{ left: 82%; top: 22%; font-size: 28px; }
.f4{ left: 92%; top: 70%; font-size: 24px; }
.f5{ left: 55%; top: 12%; font-size: 26px; }
.f6{ left: 40%; top: 78%; font-size: 28px; }

@media (max-width: 900px){
  .fun-floaters{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  .floater{ animation: none; }
}

/* ================= FOOTER ================= */

.site-footer{
  background:linear-gradient(180deg,#e4eefb,#d8e6f8);
  border-top:1px solid var(--border);
  padding:26px 0 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom: 14px;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links a{
  font-weight:800;
  text-decoration:none;
  color:#3b5f87;
}
.footer-links a:hover{ color:var(--primary-2); }

.footer-bottom{
  background:#e3eefb;
  padding:12px 0;
  border-top:1px solid rgba(79,163,227,.25);
}

.muted{ color:#4b5d78; }

/* Footer bottom row: copyright left, builder credit right */
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-credit{
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.credit-brand{
  font-weight: 900;
}

/* On small screens, stack neatly */
@media (max-width: 520px){
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-credit{
    text-align: left;
    white-space: normal;
  }
}


/* ================= MOBILE ================= */

@media (max-width:900px){
  .hero-inner{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }

  .header-inner{
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .header-cta{
    grid-column: 1 / -1;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:8px;
    margin-top:6px;
  }

  .nav-toggle{
    display:inline-flex;
    width:44px;
    height:44px;
    padding:0;
    justify-content:center;
    align-items:center;
    border-radius:12px;
  }

  .site-nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:#fff;
    border-bottom:1px solid var(--border);
    display:none;
    z-index: 999;
  }
  .site-nav.open{ display:block; }

  .site-nav .nav-list{
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    gap:6px;
  }

  .nav-link,
  .dropdown-btn{
    width:100%;
    justify-content:space-between;
    height:44px;
    padding:0 14px;
  }

  .dropdown{
    position:static;
    min-width: unset;
    opacity:1;
    transform:none;
    box-shadow:none;
    border:0;
    padding: 6px 0 0 10px;
    display:none;
    pointer-events:auto;
  }
  .has-dropdown.open > .dropdown{ display:block; }
}

/* ================= FLOATING CONTACT ================= */

.floating-contact{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  height:56px;
  padding:0 22px;
  border-radius:999px;

  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-weight:900;

  box-shadow:0 18px 36px rgba(2,6,23,.28);
  border: 1px solid rgba(255,255,255,.18);
}

.floating-contact.pulse{
  animation:pulse 2.4s ease-in-out infinite;
}

.floating-contact:hover{
  background: var(--primary-2);
  transform: translateY(-2px);
  animation-play-state: paused;
}

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(31,79,140,.45); }
  70%{ box-shadow:0 0 0 14px rgba(31,79,140,0); }
  100%{ box-shadow:0 0 0 0 rgba(31,79,140,0); }
}

/* Anchor offset for sticky header */
:target{ scroll-margin-top:120px; }

/* ============================
   Lunch & Snack Schedule Page
   ============================ */

.table-wrapper {
  overflow-x: auto;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.menu-table th,
.menu-table td {
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.menu-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.menu-table td {
  background: var(--card);
  line-height: 1.6;
}

.menu-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== A Day at First Step (Interactive Timeline) ===== */
.timeline{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.time-card{
  text-align:left;
  display:flex;
  gap: 12px;
  align-items:flex-start;

  border: 1px solid rgba(30,64,175,.18);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding: 14px;

  cursor:pointer;
  transition: transform 180ms cubic-bezier(.2,.8,.2,1),
              box-shadow 180ms cubic-bezier(.2,.8,.2,1),
              border-color 180ms cubic-bezier(.2,.8,.2,1);
}

.time-card h3{ margin:0 0 4px; font-weight:800; }
.time-card p{ margin:0; color: var(--muted); }

.time-emoji{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.14);
  font-size: 22px;
  flex: 0 0 auto;
}

.time-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(2,6,23,.10);
  border-color: rgba(37,99,235,.28);
}

.time-card.active{
  background: #ffffff;
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 18px 36px rgba(2,6,23,.12);
}

.timeline-detail{
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(30,64,175,.18);
  box-shadow: 0 10px 22px rgba(30,64,175,.10);
}

.detail-title{ margin: 0 0 6px; font-weight: 900; }
.detail-text{ margin: 0; color: var(--muted); }

@media (max-width: 900px){
  .timeline{ grid-template-columns: 1fr; }
}

/* ================= TRUST BADGES ROW ================= */

.trust-row{
  background: linear-gradient(
    180deg,
    rgba(37,99,235,.08),
    rgba(37,99,235,.03)
  );
  border-top: 1px solid rgba(30,64,175,.18);
  border-bottom: 1px solid rgba(30,64,175,.18);
  padding: 26px 0;
}

.trust-inner{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-badge{
  display:flex;
  gap: 12px;
  align-items:flex-start;

  background:#ffffff;
  border:1px solid rgba(30,64,175,.18);
  border-radius: var(--radius);
  padding: 16px;

  box-shadow: 0 6px 18px rgba(30,64,175,.10);

  transition: transform 180ms var(--ease-out),
              box-shadow 180ms var(--ease-out),
              border-color 180ms var(--ease-out);
}

.trust-badge strong{
  display:block;
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 2px;
  color:#0f3d7a;
}

.trust-badge p{
  margin:0;
  color: var(--muted);
  font-size: .95rem;
}

.trust-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;

  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.18);
  font-size: 22px;
  flex: 0 0 auto;
}

.trust-badge:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,6,23,.12);
  border-color: rgba(37,99,235,.32);
}

@media (max-width: 900px){
  .trust-inner{
    grid-template-columns: 1fr;
  }
}

/* ================= PARENT TESTIMONIAL STRIP ================= */

.section-title.center{
  text-align:center;
}

.testimonial-strip{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.95),
      rgba(219,233,251,.65)
    );
  border-top: 1px solid rgba(30,64,175,.18);
  border-bottom: 1px solid rgba(30,64,175,.18);
  padding: 40px 0;
}

.testimonial-carousel{
  position: relative;
  max-width: 760px;
  margin: 22px auto 0;
  min-height: 130px;
}

.testimonial{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms cubic-bezier(.2,.8,.2,1),
              transform 520ms cubic-bezier(.2,.8,.2,1);
  text-align: center;
}

.testimonial.active{
  opacity: 1;
  transform: translateY(0);
}

.testimonial p{
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
  color: #0f3d7a;
  margin: 0 0 10px;
}

.testimonial footer{
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

@media (max-width: 700px){
  .testimonial p{
    font-size: 1.05rem;
  }
}

/* =====================================================
   ✅ Schedule Component (Reusable, full-width, no skew)
   Use on Infant / Toddler / Preschool pages
===================================================== */

.schedule-section{
  position: relative;
}

.schedule-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 12px;
}

@media (max-width: 900px){
  .schedule-grid{ grid-template-columns: 1fr; }
}

.schedule-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 0 rgba(2,6,23,.04);
  transform: none; /* ✅ prevent inherited skew/tilt */
}

.schedule-timeline{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.schedule-timeline li{
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;

  transform: none; /* ✅ prevent inherited skew/tilt */
}

.schedule-time{
  font-weight: 900;
  min-width: 110px;
  white-space: nowrap;
  color: var(--text);
  line-height: 1.2;
  transform: none;
}

.schedule-activity{
  font-weight: 800;
  color: var(--muted);
  line-height: 1.3;
  transform: none;
}

/* Preschool page — Graduation photos: show FULL images, keep them level */
.page-preschool .graduation-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.page-preschool .graduation-row img{
  width: 100%;
  height: 360px;          /* equal height */
  object-fit: contain;     /* show entire photo */
  background: var(--card); /* or #fff */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  padding: 10px;           /* optional framing */
}

@media (max-width: 700px){
  .page-preschool .graduation-row{ grid-template-columns: 1fr; }
  .page-preschool .graduation-row img{ height: 280px; }
}
