/* Pennant — styled in the Enrollment Genius brand system.
   Poppins + Roboto, aubergine + orange + teal on cream.
   Page-specific styles live inline in each page, never here. */

:root {
  /* Enrollment Genius palette */
  --eg-aubergine-deep: #1A001E;
  --eg-aubergine: #28002E;
  --eg-aubergine-light: #3F0A47;
  --eg-orange: #FF9152;
  --eg-orange-deep: #E97636;
  --eg-teal: #8CD0D4;
  --eg-teal-deep: #5FB5BA;
  --eg-bg-cream: #FFF5EE;
  --eg-bg-soft: #FAF7F5;
  --eg-border: #EAE3E0;
  --eg-text: #363636;
  --eg-text-light: #5C5C5C;

  /* Semantic aliases used throughout the pages */
  --navy: var(--eg-aubergine);    /* primary dark */
  --ink: var(--eg-text);          /* body text */
  --cream: var(--eg-bg-cream);    /* page background */
  --gold: var(--eg-orange);       /* accent / CTA */
  --paper: #ffffff;
  --line: var(--eg-border);
  --muted: var(--eg-text-light);
  --green: var(--eg-teal-deep);   /* success / active */

  --radius: 20px;
  --shadow: 0 30px 60px rgba(40, 0, 46, 0.1), 0 4px 12px rgba(40, 0, 46, 0.04);
  --maxw: 1080px;

  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: var(--font-display);
  color: var(--eg-aubergine);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--eg-aubergine); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Top bar — light/airy EG style */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--eg-aubergine);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand .flag { color: var(--eg-orange); }
.brand small { font-weight: 500; font-size: 12px; color: var(--muted); margin-left: 2px; }

/* Buttons — EG rounded pills, aubergine default, orange CTA */
.btn {
  display: inline-block;
  background: var(--eg-aubergine);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { background: var(--eg-aubergine-light); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.gold { background: var(--eg-orange); color: #fff; }
.btn.gold:hover { background: var(--eg-orange-deep); }
.btn.block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Cards + forms */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
label { display: block; font-weight: 600; margin: 16px 0 6px; font-size: 14px; font-family: var(--font-display); }
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--eg-orange);
  box-shadow: 0 0 0 3px rgba(255, 145, 82, 0.18);
}
.muted { color: var(--muted); }
.error { color: #b3261e; font-weight: 600; }
.notice {
  background: var(--eg-bg-cream);
  border: 1px solid var(--eg-orange);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 16px 0;
}
.success {
  background: #ecf8f8;
  border: 1px solid var(--eg-teal-deep);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 16px 0;
}

footer.site {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 44px 0;
}
