/* ==============================================
   shared.css — used on all pages
   (nav, footer, base reset, typography, variables)
   ============================================== */

:root {
    --purple: #623492;
    --purple-dark: #4a2670;
    --purple-light: #f1eaf9;
    --green: #166d37;
    --green-light: #e4f0e8;
    --teal: #496974;
    --cream: #faf6ef;
    --cream-deep: #f3ecdf;
    --ink: #2b1a3d;
    --ink-soft: #5a4d6b;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

/* ---------- NAV ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(98, 52, 146, 0.1);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }
  .nav-logo img { height: 42px; width: auto; display: block; }

  .nav-links {
    display: flex;
    gap: 36px;
    font-size: 15px;
    font-weight: 500;
  }

  .nav-links a {
    color: var(--ink-soft);
    transition: color 0.15s;
    position: relative;
  }
  .nav-links a:hover { color: var(--purple); }

  .nav-cta {
    background: var(--green);
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s;
  }
  .nav-cta:hover { background: #125a2d; }

/* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    color: #cdc0db;
    padding: 70px 0 0;
    font-size: 14.5px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
  }
  .footer-logo-img { height: 44px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.92; }
  .footer-brand p { color: #b3a4c4; font-size: 14px; line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: #cdc0db;
    transition: background 0.15s, color 0.15s;
  }
  .footer-social a svg { width: 17px; height: 17px; }
  .footer-social a:hover { background: var(--green); color: white; }

  .footer-col-title {
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  .footer-text { color: #b3a4c4; margin-bottom: 8px; line-height: 1.6; }
  .footer-text a { color: #b3a4c4; transition: color 0.15s; }
  .footer-text a:hover { color: white; }
  .footer-link {
    display: block;
    color: #b3a4c4;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.15s;
  }
  .footer-link:hover { color: white; }

  .footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #8a7a9c;
  }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-inner { padding: 12px 20px; }
    .nav-logo img { height: 36px; width: auto; }
    .nav-cta { font-size: 12px; padding: 9px 16px; white-space: nowrap; }
    .hours-grid { grid-template-columns: 1fr; gap: 36px; }
    .adoption-banner { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-grid-3 { grid-template-columns: 1fr; }
    .menu-new-grid { grid-template-columns: 1fr; }
    .specialty-full-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .specialty-grid { grid-template-columns: 1fr; }
    .bongo-card { grid-template-columns: 1fr; }
    .latest-adoption-card { grid-template-columns: 1fr; }
    .latest-adoption-counter { border-left: none; border-top: 1px solid rgba(98,52,146,0.12); padding-left: 0; padding-top: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .press-grid { grid-template-columns: repeat(3, 1fr); }
    section { padding: 64px 0; }
  }

/* ---------- PAGE HEADER (used on faq, visit, events, alumni) ---------- */
.page-header { background: var(--purple); color: white; padding: 70px 0 0; position: relative; margin-bottom: -4px; }
.page-header::before { content: ''; position: absolute; top: -100px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.page-header .eyebrow { color: #a7e6bb; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.page-header h1 { color: white; font-size: clamp(34px, 5vw, 50px); max-width: 640px; margin-bottom: 14px; }
.page-header p { color: #e2d4f2; font-size: 17px; max-width: 560px; margin-bottom: 40px; }
.ragged { display: block; width: 100%; height: 60px; margin-top: 0; margin-bottom: -3px; vertical-align: bottom; }
.eyebrow { color: var(--green); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }
section { padding: 80px 0; }

/* ---------- SHARED BUTTONS ---------- */
.btn-primary { background: var(--green); color: white; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s; }
.btn-primary:hover { background: #125a2d; }
.btn-ghost { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.5); color: white; padding: 13px 26px; border-radius: 100px; font-weight: 600; font-size: 15px; transition: background 0.15s; }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-outline { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); padding: 13px 26px; border-radius: 100px; font-weight: 600; font-size: 15px; }
