@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

:root {
  --orange:  #F2A922;  /* Mustard — badges, marquee strip, highlights */
  --teal:    #70B2AC;  /* Teal — secondary buttons, icons, accents */
  --red:     #F37D64;  /* Coral — primary CTA buttons (was red) */
  --salmon:  #F37D64;  /* Coral — same, replaces salmon */
  --blue:    #5D8CAD;  /* Steel Blue — hero bg, headers, nav border */
  --cream:   #FFFDF5;  /* keep as is */
  --dark:    #1E1E2E;  /* keep as is */
  --white:   #FFFFFF;  /* keep as is */
  --pink:    #F3A1A1;  /* Pink — hover states, soft section backgrounds */
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 68px;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem; color: var(--orange);
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--dark); text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--orange); color: white; }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--red); color: white !important;
  border-radius: 50px !important; padding: 10px 22px !important;
  font-size: 0.9rem !important;
}
.nav-cta:hover { background: var(--salmon) !important; color: white !important; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-primary { background: var(--orange); color: white; }
.btn-secondary { background: white; color: var(--blue); }
.btn-red { background: var(--red); color: white; }
.btn-teal { background: var(--teal); color: white; }

/* ─── SECTIONS ─── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-weight: 800; font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--salmon); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark); line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { color: var(--teal); font-style: normal; }
.section-sub { font-size: 1.05rem; color: #555; line-height: 1.7; max-width: 560px; }

/* ─── CTA SECTION ─── */
.cta-section { background: var(--orange); padding: 5rem 2rem; text-align: center; }
.cta-section h2 {
  font-family: 'Fredoka One', cursive; font-size: clamp(2rem, 4vw, 3rem);
  color: white; margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: var(--dark); padding: 3rem 2rem 2rem; color: rgba(255,255,255,0.65); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: var(--orange); margin-bottom: 0.8rem; text-decoration: none; display: block; }
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-col h4 { font-weight: 800; color: white; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col a {
  display: block; color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.85rem; margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; flex-wrap: wrap; gap: 1rem;
}
.made-my { display: flex; align-items: center; gap: 6px; font-weight: 700; color: white; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 2px solid #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.1); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links a:not(.nav-cta) { display: none; }
}
