/* Metro NY Charter School Jobs® Fair — shared stylesheet
   Used by: metro-ny-main-landing.html, metro-ny-employer.html */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2e;
  --navy-mid: #111d2e;
  --navy-dark: #080f18;
  --red: #e02020;
  --red-dark: #c01a1a;
  --yellow: #f5c400;
  --yellow-dark: #e0b200;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.65);
  --white-soft: rgba(255, 255, 255, 0.3);
  --white-faint: rgba(255, 255, 255, 0.08);
  --max: 1180px;
}

html, body { scroll-behavior: smooth; }
html { scroll-padding-top: 72px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ── STRIPES ─────────────────────────────────── */
.stripe-top    { height: 6px; background: var(--red); }
.stripe-bottom { height: 8px; background: var(--yellow); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary         { background: var(--red);    color: var(--white); }
.btn-primary:hover   { background: var(--red-dark); }

.btn-secondary       { background: transparent;   color: var(--white); border: 2px solid var(--white-soft); }
.btn-secondary:hover { border-color: var(--white); }

.btn-yellow          { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover    { background: var(--yellow-dark); }

.btn-navy            { background: var(--navy);   color: var(--white); }
.btn-navy:hover      { background: var(--yellow); color: var(--navy); }

.btn-lg {
  font-size: 16px;
  padding: 18px 40px;
}

/* ── NAV / TOPBAR ─────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  border-bottom: 1px solid var(--white-faint);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-apple {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.brand-sub {
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 78px);
}

.hero-copy {
  background: var(--navy);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s ease both;
}

.hero-copy::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid var(--white-faint);
  pointer-events: none;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--white-dim);
  max-width: 48ch;
  margin-bottom: 32px;
}

/* Display headline variant — stacked accent words (employer hero) */
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 9vw, 128px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline span { display: block; }
.hero-headline .accent { color: var(--yellow); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--white-dim);
  letter-spacing: 0.02em;
}

/* ── STATS ─────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: 32px;
}

.stats.stats-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.stat {
  background: var(--navy-mid);
  padding: 20px;
  border-top: 3px solid var(--red);
}

.stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  color: var(--white-dim);
  font-weight: 600;
}

/* ── EVENT CARD (hero right panel) ─────────────────────────────────── */
.event-card {
  background: var(--red);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s 0.15s ease both;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.circle-1 { width: 340px; height: 340px; top: -100px; right: -100px; }
.circle-2 { width: 240px; height: 240px; top: 160px; right: -80px; }
.circle-3 { width: 200px; height: 200px; bottom: -80px; right: 60px; }

.event-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
}

.event-card h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  position: relative;
  z-index: 1;
  margin: 24px 0;
}

.event-meta {
  display: grid;
  gap: 2px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.event-meta-item {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.15);
}

.event-meta-item label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.event-meta-item div {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

/* Giant stacked date (employer event card) */
.date-block {
  position: relative;
  z-index: 1;
}

.date-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.date-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 14vw, 180px);
  line-height: 0.85;
  color: var(--white);
}

.date-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--navy);
}

.details-list {
  list-style: none;
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.details-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 6px;
}

.details-list li::before {
  content: '•';
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ── TRUST STRIP ─────────────────────────────────── */
.trust-strip {
  background: var(--navy-mid);
  padding: 24px 48px;
  border-bottom: 1px solid var(--white-faint);
}

.trust-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  white-space: nowrap;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.logo-pill {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── SECTIONS ─────────────────────────────────── */
.section { padding: 80px 64px; }
.section-alt { background: var(--navy-mid); }

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.section-head h2 { margin-bottom: 14px; }

.section-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-dim);
}

/* Two-column section layout (heading left, body right) */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-split p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white-dim);
}

.section-split p + p { margin-top: 16px; }
.section-split h2 span { color: var(--red); }

/* ── CARDS ─────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card {
  background: var(--navy-mid);
  padding: 36px 32px;
  border-top: 3px solid var(--red);
  transition: border-color 0.2s;
}
.section-alt .card { background: var(--navy); }
.card:hover { border-color: var(--yellow); }

.card .icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--red);
  margin-bottom: 14px;
  line-height: 1;
}

.card h3 { margin-bottom: 10px; }

.card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ── SPLIT (event details) ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.details-box {
  background: var(--navy-mid);
  padding: 36px 32px;
  border-top: 3px solid var(--red);
}

.detail-group + .detail-group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--white-faint);
}

.detail-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 8px;
}

.detail-group div {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.detail-group p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-dim);
}

/* ── CHOOSER / REGISTRATION ─────────────────────────────────── */
.chooser { background: var(--navy); }

.choice-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2px;
}

.choice-card {
  background: var(--navy-mid);
  padding: 40px 36px;
  border-top: 3px solid var(--red);
}

.choice-card.featured {
  background: var(--red);
  border-top: 3px solid var(--yellow);
}

.choice-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  display: block;
}

.choice-card.featured .choice-tag { color: var(--navy); }

.choice-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.choice-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.choice-card.featured p { color: rgba(255, 255, 255, 0.8); }

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-dim);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.choice-card.featured .checklist li { color: rgba(255, 255, 255, 0.85); }
.choice-card.featured .checklist li::before { color: var(--navy); }

/* ── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 10px;
}

.cta-banner h2 .accent { color: var(--yellow); }

.cta-banner p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* ── NOTICE BOX ─────────────────────────────────── */
.notice-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(245, 196, 0, 0.1);
  border-left: 3px solid var(--yellow);
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--white-faint);
}

.footer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero  { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar { padding: 0 24px; }
  .nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy,
  .event-card { padding: 56px 32px; }

  .section { padding: 56px 32px; }

  .trust-strip { padding: 20px 32px; }

  .stats,
  .cards,
  .split,
  .choice-grid,
  .section-split { grid-template-columns: 1fr; }

  .section-split { gap: 32px; }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 56px 32px;
  }

  .cta-actions { flex-direction: row; flex-wrap: wrap; }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .nav-actions .btn { font-size: 12px; padding: 10px 16px; }
}
