:root{
  --bg: #0b0f17;
  --bg2:#0f1524;
  --card:#111a2e;
  --text:#e9eefc;
  --muted:#b8c4e6;
  --line:rgba(255,255,255,.12);
  --accent:#7aa2ff;
  --accent2:#68e2c2;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --hero-img: url("assets/fordham1.jpg");
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(900px 500px at 10% 0%, rgba(122,162,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(104,226,194,.12), transparent 60%),
              linear-gradient(180deg, var(--bg), #070a10 80%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background: rgba(11,15,23,.72);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; min-width: 220px; }
.brand-mark{
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(122,162,255,.9), rgba(104,226,194,.75));
  color:#06101a;
}
.brand-text{ font-weight:700; letter-spacing:.2px; line-height:1.15; }
.site-nav{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
}
.nav-link{ padding:8px 10px; border-radius:12px; }
.nav-link:hover{ background: rgba(255,255,255,.06); text-decoration:none; }
.nav-cta{
  border:1px solid rgba(122,162,255,.6);
  background: rgba(122,162,255,.12);
}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.burger{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  position:relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--text);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(11,15,23,.15), rgba(11,15,23,.85)),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  filter:saturate(1.05);
  transform: scale(1.03);
}
.hero-content{
  position:relative;
  padding: 72px 0 44px;
}
.kicker{
  display:inline-block;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  border-radius:999px;
  margin:0 0 14px;
  font-weight:600;
  letter-spacing:.4px;
}
.hero h1{
  margin:0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height:1.05;
}
.lead{
  margin:16px 0 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(233,238,252,.92);
  max-width: 72ch;
}
.hero-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:stretch;
}
.meta-card{
  flex: 1 1 520px;
  background: rgba(17,26,46,.70);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.meta-label{ color: var(--muted); font-weight:600; margin-bottom:10px; }
.meta-value{ margin:10px 0; }
.meta-sub{
  display:block;
  color: var(--muted);
  font-size:14px;
  margin-top:4px;
}
.meta-actions{
  flex: 0 1 260px;
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content:flex-end;
}

/* Sections */
.section{ padding: 64px 0; }
.section-alt{ background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-header{ margin-bottom: 22px; }
.section-header h2{ margin:0 0 10px; font-size: 28px; }
.section-header p{ margin:0; color: rgba(184,196,230,.95); max-width: 90ch; }
.section-header.compact h2{ font-size: 24px; }
.section-header.compact{ margin-bottom: 14px; }

.grid{ display:grid; gap:16px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}

.card{
  background: rgba(17,26,46,.55);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: rgba(233,238,252,.92); }
.muted{ color: rgba(184,196,230,.95); }
.tiny{ font-size: 12.5px; }

.stack{ display:flex; flex-direction:column; gap:12px; }

/* News list style */
.list-card{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 14px 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,26,46,.45);
  border-radius: var(--radius);
}
.list-date{
  color: rgba(184,196,230,.95);
  font-weight:700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing:.5px;
}
.list-title{ margin:0 0 6px; font-size: 16px; }
.list-text{ margin:0; color: rgba(233,238,252,.9); }

/* Events */
.event-card{
  display:grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  padding: 14px 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,26,46,.45);
  border-radius: var(--radius);
}
.event-when{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:10px 0;
}
.event-month{ font-size: 12px; color: rgba(184,196,230,.95); font-weight:700; text-transform: uppercase; }
.event-day{ font-size: 20px; font-weight:800; }
.event-body h3{ margin:0 0 6px; font-size: 16px; }
.event-body p{ margin:0; }
.event-body p + p{ margin-top: 8px; }

/* Profile */
.profile{ display:flex; gap:14px; align-items:flex-start; }
.avatar{
  width:54px; height:54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(122,162,255,.85), rgba(104,226,194,.7));
  color:#06101a;
  display:grid;
  place-items:center;
  font-weight:900;
}
.chip-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

/* Publications */
.pub-card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,26,46,.45);
  border-radius: var(--radius);
  padding: 14px 14px;
}
.pub-card h3{ margin:0 0 6px; font-size: 16px; }
.pub-links{ display:flex; gap:14px; margin-top: 8px; flex-wrap:wrap; }

/* =====================================================
   Legacy Callout Style (Disabled)
   Reason: too large / visually heavy for academic site
   Date: 2026-01
   =====================================================

.callout{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 16px;
  border-radius: var(--radius2);
  border:1px solid rgba(104,226,194,.35);
  background: rgba(104,226,194,.08);
}

.callout-title{
  margin:0;
}

===================================================== */

/* Callout */
.callout{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.callout-title{
  margin:0;
  font-size: 15px;
  font-weight: 600;
}

.callout .muted{
  font-size: 13px;
}

/* Sponsors */
.sponsor-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.sponsor-logo{
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align:center;
  color: rgba(184,196,230,.95);
  font-weight:700;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items:start;
}
.contact-form label{
  display:block;
  font-weight:600;
  color: rgba(233,238,252,.92);
  margin-bottom: 10px;
}
.contact-form input, .contact-form textarea{
  width:100%;
  margin-top: 6px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  outline:none;
}
.contact-form input:focus, .contact-form textarea:focus{
  border-color: rgba(122,162,255,.65);
  box-shadow: 0 0 0 3px rgba(122,162,255,.15);
}
.divider{ height:1px; background: var(--line); margin: 14px 0; }

/* Buttons & links */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(122,162,255,.18);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{ background: rgba(122,162,255,.24); text-decoration:none; }
.btn-ghost{ background: rgba(255,255,255,.06); }
.text-link{ color: rgba(122,162,255,.95); font-weight:700; }
.text-link:hover{ text-decoration:underline; }

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding: 22px 0;
  background: rgba(0,0,0,.25);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.footer-title{ font-weight:800; margin-bottom: 6px; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }

/* Responsive */
@media (max-width: 980px){
  .two-col{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .sponsor-row{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    display:none;
    width:100%;
    padding: 10px 0 2px;
  }
  .site-nav.open{ display:flex; }
  .header-inner{ flex-wrap:wrap; }
  .brand-text{ display:none; }
}

/* Paragraph spacing inside cards */
.card p + p {
  margin-top: 12px;
}

.card p + ul,
.card p + ol {
  margin-top: 10px;
}

#top {
  position: relative; top: -90px;
}

/* =====================================================
   Shared Page Hero (for all sub-pages)
   ===================================================== */
.page-hero{
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 44px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,15,23,.15), rgba(11,15,23,.85)),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.03);
}

.page-hero-content{
  position: relative;
  z-index: 1;
}
.page-hero-content .kicker{
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}


.page-hero h1{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
}

.page-hero p{
  margin: 10px 0 0;
  color: rgba(233,238,252,.92);
  max-width: 72ch;
}

@media (max-width: 768px){
  .page-hero{ min-height: 200px; padding-bottom: 22px; }
}

/* =====================================================
   SCHOOL COLOR OVERRIDE (COLOR ONLY)
   Paste at END of style.css
   ===================================================== */

/* ---------- Color variables ---------- */
:root{
  --bg: #ffffff;
  --bg2: #fafafa;
  --card: #ffffff;

  --text: #1a1a1a;
  --muted: #555555;

  --line: #e5e5e5;

  /* School red */
  --accent: #8c1d18;
  --accent2: #a94442;
}

/* ---------- Body ---------- */
body{
  color: var(--text);
  background: var(--bg);
}

/* ---------- Header ---------- */
.site-header{
  background: rgba(255,255,255,.92);
  border-bottom: 3px solid var(--accent);
}

.nav-link:hover{
  background: #f6eaea;
}

/* ---------- Brand ---------- */
.brand-mark{
  background: var(--accent);
  color: #ffffff;
}

/* ---------- Hero ---------- */
.hero,
.page-hero{
  border-bottom-color: var(--line);
}

.hero-bg,
.page-hero-bg{
  filter: saturate(1);
}

.kicker{
  border-color: var(--accent);
  background: #f6eaea;
  color: var(--accent);
}

/* ---------- Sections ---------- */
.section-alt{
  background: #f9f9f9;
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

.section-header h2{
  color: var(--accent);
}

.section-header p{
  color: var(--muted);
}

/* ---------- Cards ---------- */
.card,
.list-card,
.event-card,
.pub-card,
.meta-card{
  background: var(--card);
  border-color: var(--line);
}

.card p,
.list-text,
.event-body p{
  color: var(--text);
}

.muted{
  color: var(--muted);
}

/* ---------- Buttons & links ---------- */
a,
.text-link{
  color: var(--accent);
}

a:hover,
.text-link:hover{
  color: var(--accent2);
}

.btn{
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn:hover{
  background: var(--accent2);
}

.btn-ghost{
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Publications ---------- */
.pub-grid-header{
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.pub-row:hover{
  background: #f6eaea;
}

.pub-venue,
.pub-year{
  color: var(--muted);
}

/* ---------- Events ---------- */
.event-when{
  background: #ffffff;
  border-color: var(--line);
}

/* ---------- Footer ---------- */
.site-footer{
  background: #fafafa;
  border-top-color: var(--accent);
}

.footer-title{
  color: var(--accent);
}

.kicker{
  color: var(--accent) !important;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Make all h1 white */
h1{
  color: #ffffff;
}
