/* ============================================================
   alumni_info.css — Alumni Info page
   Design mirrors Spirit of '76 Gull Lake Reunion Schedule
   Fonts: Playfair Display (headings), Lato (body UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS variables (matches schedule) ─────────────────────── */
:root {
  --ai-navy:       #1B2B4B;
  --ai-gold:       #C9A84C;
  --ai-gold-light: #E8C97A;
  --ai-cream:      #F7F3EC;
  --ai-text:       #2C2C2C;
  --ai-muted:      #7A7A7A;
  --ai-white:      #ffffff;
  --ai-border:     #DDD5C4;
  --ai-red:        #8B1A1A;
}

/* ── Page reset ────────────────────────────────────────────── */
body {
  font-family: 'Lato', sans-serif;
  background: var(--ai-cream);
  color: var(--ai-text);
  margin: 0;
}

/* ── Nav ───────────────────────────────────────────────────── */
.ai-nav {
  background: var(--ai-navy);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.ai-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.ai-nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--ai-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.ai-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.ai-nav__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ai-nav__links a:hover,
.ai-nav__links a.active { color: var(--ai-gold); }

/* ── Header (matches schedule header) ─────────────────────── */
.ai-header {
  background: var(--ai-navy);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ai-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201,168,76,0.05) 30px,
    rgba(201,168,76,0.05) 31px
  );
  pointer-events: none;
}
/* Badge circle like schedule's '76 badge */
.ai-header-badge {
  display: inline-block;
  border: 2px solid var(--ai-gold);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 76px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ai-gold);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ai-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 5vw, 36px);
  color: var(--ai-white);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
}
.ai-header-title span { color: var(--ai-gold); }
.ai-header-sub {
  color: var(--ai-gold-light);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin: 0;
}
.ai-gold-rule {
  width: 60px;
  height: 2px;
  background: var(--ai-gold);
  margin: 14px auto 0;
  position: relative;
  z-index: 1;
}

/* ── Three-column layout ───────────────────────────────────── */
.ai-page-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 28px;
  align-items: start;
}

/* ── Side panels (left & right) ────────────────────────────── */
.ai-panel {
  background: var(--ai-white);
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border: 1px solid var(--ai-border);
  overflow: hidden;
  position: sticky;
  top: 20px;
}
.ai-panel__head {
  background: var(--ai-navy);
  padding: 16px 18px;
  text-align: center;
}
.ai-panel__head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ai-white);
  line-height: 1.3;
  margin: 0 0 4px;
}
.ai-panel__head h2 span { color: var(--ai-gold); }
.ai-panel__sub {
  font-size: 11px;
  color: var(--ai-gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
}
.ai-panel__body { padding: 18px 16px; }

/* ── Payment detail components ─────────────────────────────── */
.ai-pay-intro {
  font-size: 13px;
  color: var(--ai-text);
  line-height: 1.55;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ai-border);
}
.ai-pay-intro strong { color: var(--ai-navy); }
.ai-pay-flex-note {
  font-size: 12px;
  color: var(--ai-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ai-border);
}
.ai-pay-method {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ai-border);
}
.ai-pay-method:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ai-pay-method-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ai-navy);
  margin-bottom: 8px;
}
.ai-pay-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ai-gold);
  color: var(--ai-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-style: normal;
}
.ai-pay-detail {
  font-size: 12px;
  color: var(--ai-text);
  line-height: 1.6;
}
.ai-pay-detail address {
  font-style: normal;
  background: var(--ai-cream);
  border-left: 3px solid var(--ai-gold);
  padding: 8px 10px;
  border-radius: 0 3px 3px 0;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 6px;
}
.ai-pay-detail a {
  color: var(--ai-gold);
  text-decoration: none;
  font-weight: 700;
}
.ai-pay-detail a:hover { text-decoration: underline; }
.ai-pay-note {
  font-size: 11px;
  color: var(--ai-muted);
  margin-top: 4px;
  font-style: italic;
}
.ai-pay-amount {
  display: inline-block;
  background: var(--ai-navy);
  color: var(--ai-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ── Center main schedule ──────────────────────────────────── */
.ai-main {
  min-width: 0;
}

/* ── Day blocks ────────────────────────────────────────────── */
.ai-day-block {
  margin-bottom: 28px;
  background: var(--ai-white);
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid var(--ai-border);
}
.ai-day-header {
  background: var(--ai-navy);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ai-day-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ai-day-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ai-gold);
  flex-shrink: 0;
}
.ai-day-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ai-white);
}
.ai-day-date {
  font-size: 12px;
  color: var(--ai-gold-light);
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* ── Event rows ────────────────────────────────────────────── */
.ai-events-list { padding: 8px 0; }
.ai-event-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  padding: 10px 22px;
  gap: 14px;
  border-bottom: 1px solid var(--ai-border);
  transition: background 0.15s;
}
.ai-event-row:last-child { border-bottom: none; }
.ai-event-row:hover { background: #faf8f4; }
.ai-event-time {
  font-size: 13px;
  color: var(--ai-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ai-event-name {
  font-size: 15px;
  color: var(--ai-text);
  font-weight: 400;
}
.ai-event-name em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--ai-muted);
  margin-top: 2px;
}
.ai-tbd {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Footer ────────────────────────────────────────────────── */
.ai-footer {
  background: var(--ai-navy);
  border-top: 2px solid var(--ai-gold);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ai-gold-light);
  letter-spacing: 0.08em;
}
.ai-footer a {
  color: var(--ai-gold);
  text-decoration: none;
}
.ai-footer a:hover { text-decoration: underline; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ai-page-layout {
    grid-template-columns: 1fr;
  }
  .ai-panel {
    position: static;
  }
}
@media (max-width: 540px) {
  .ai-event-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .ai-event-time { font-size: 12px; }
}
