/* ============================================================
   Full Circle College & Career Prep — Global Stylesheet
   fullcircleprep.com
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --teal:       #0d6e6e;
  --teal-dark:  #094e4e;
  --teal-light: #1a9090;
  --teal-pale:  #e8f4f4;
  --coral:      #ff6b4a;
  --coral-dark: #e8552f;
  --coral-pale: #fff0ed;
  --cream:      #fdf8f3;
  --navy:       #1c2b3a;
  --white:      #ffffff;
  --text:       #1c2b3a;
  --text-mid:   #4a6070;
  --text-light: #7a95a8;
  --border:     #dde8e8;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Fraunces', serif; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s; white-space: nowrap;
}
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 4px 20px rgba(255,107,74,.35); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,74,.45); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

/* ── TAGS ────────────────────────────────────────────────── */
.tag { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.tag-teal  { background: var(--teal-pale); color: var(--teal); }
.tag-coral { background: var(--coral-pale); color: var(--coral-dark); }

/* ── SECTION HEADINGS ────────────────────────────────────── */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 14px; }
.section-title.white { color: #fff; }
.section-sub { font-size: 17px; line-height: 1.75; color: var(--text-mid); }
.section-sub.white { color: rgba(255,255,255,.65); }
.section-hdr { margin-bottom: 56px; }
.section-hdr.center { text-align: center; }
.section-hdr.center .section-sub { margin: 0 auto; max-width: 560px; }

/* ── RAINBOW DIVIDER ─────────────────────────────────────── */
.rainbow { height: 5px; background: linear-gradient(to right, #e53e3e, #ed8936, #ecc94b, #48bb78, #0d6e6e, #3b82f6, #8b5cf6); }

/* ── CARDS ───────────────────────────────────────────────── */
.card { background: var(--white); border-radius: 20px; border: 1px solid var(--border); padding: 36px; transition: all .3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(13,110,110,.1); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(253,248,243,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,110,110,.09);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(13,110,110,.1); }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 13px; color: var(--text-mid); text-decoration: none;
  font-size: 13.5px; font-weight: 500; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-cta {
  background: var(--coral) !important; color: #fff !important;
  padding: 9px 22px !important; border-radius: 100px !important;
  font-weight: 700 !important; font-size: 13px !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; transform: translateY(-1px) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mob-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 16px 24px; z-index: 890; box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.mob-menu.open { display: block; }
.mob-menu a { display: block; padding: 13px 0; color: var(--text); text-decoration: none; font-weight: 500; font-size: 16px; border-bottom: 1px solid var(--border); }
.mob-menu a:last-child { border: none; color: var(--coral); font-weight: 700; }

/* ── PAGE HERO (interior pages) ─────────────────────────── */
.page-hero { background: var(--navy); padding: 140px 48px 80px; position: relative; overflow: hidden; }
.page-hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(13,110,110,.2) 0%, transparent 60%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .section-label { color: rgba(255,107,74,.85); }
.page-hero h1 { font-size: clamp(36px, 4.5vw, 60px); color: #fff; margin-bottom: 16px; }
.page-hero .hero-sub { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.62); max-width: 560px; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); padding: 96px 48px; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 4vw, 44px); color: #fff; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--navy); padding: 72px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.f-brand img { height: 42px; display: block; margin-bottom: 18px; }
.f-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.f-social { display: flex; gap: 10px; }
.fs-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); text-decoration: none; transition: all .25s; }
.fs-btn:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.f-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 18px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 9px; }
.f-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.f-col a:hover { color: var(--coral); }
.f-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
.f-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.f-bottom a:hover { color: var(--coral); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .wrap { padding: 0 24px; }
  .page-hero { padding: 120px 24px 64px; }
  .cta-band { padding: 72px 24px; }
  footer { padding: 56px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
