/* ===========================
   General Info — Themed Styles
   =========================== */

/* ------- Theme / Page layout ------- */
:root{
  --maroon: #8c1f2f;
  --gold:   #f2c14e;
  --ink:    #151515;
  --white:  #ffffff;

  /* shared page width */
  --page-max: 1100px;
}

/* ---------- Reset ---------- */
*{ box-sizing: border-box; margin:0; padding:0; }
img{ max-width:100%; display:block; }

/* ---------- Base ---------- */
html, body{ height:100%; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

/* utility */
.nowrap{ white-space: nowrap; }
.muted{ color:#6b6b6b; }

/* shared container (keeps content centered with fluid gutters) */
.container,
.page-wrap{
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

/* ---------- Header ---------- */
.site-header{
  display: grid;
  grid-template-columns: 220px 1fr 150px; /* left menu / center title / right logo */
  align-items: center;
  gap: 1rem;
  padding: 70px 24px;
  background: var(--white);
  position: relative;
  z-index: 10;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.side-links{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-links a{
  font-family: Oswald, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-decoration: none;
  color: var(--maroon);
}
.side-links a[aria-current="page"]{
  font-weight: 700;
}

.page-title{
  justify-self: center;
  text-align: center;
  font-family: Anton, Impact, Oswald, sans-serif;
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  letter-spacing: 1px;
  color: var(--maroon);
}

.logo{ justify-self: end; }
.logo img{ height: 54px; width: auto; }

/* ---------- Type helpers ---------- */
.section-title{
  font-family: Anton, Impact, Oswald, sans-serif;
  color: var(--maroon);
}
.h3{
  font-family: Oswald, Arial, sans-serif;
  font-size: 22px;
  letter-spacing:.3px;
  margin-bottom:12px;
  color: var(--maroon);
}
.h4{
  font-family: Oswald, Arial, sans-serif;
  font-size: 18px;
  margin: 16px 0 8px;
  color: var(--maroon);
}

/* ---------- Cards / callouts ---------- */
.card,
.event-card{
  background:#fff;
  border: 1px solid #e9e9e9;
  border-top: 6px solid var(--gold);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  margin: 18px auto;
}

.card + .card,
.event-card + .event-card{ margin-top: 18px; }

.card--header,
.event-head{
  padding: 16px 0 14px;
  margin: -4px 0 6px;
  border-bottom: 1px solid #f0f0f0;
}
.event-head h2{
  font-family: Oswald, Arial, sans-serif;
  font-weight: 600;
  letter-spacing:.3px;
  font-size: clamp(1.1rem, .8rem + .8vw, 1.6rem);
  color: var(--ink);
}

.callout{
  background: var(--maroon);
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Eyebrow + meta */
.eyebrow{
  text-transform: uppercase;
  color: var(--maroon);
  font-family: Oswald, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.dates{ margin: 6px 0 8px; font-size: 18px; }
.pill{
  display:inline-block;
  margin: 4px 0 14px;
  padding: 6px 12px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
  color: var(--maroon);
  background: #fff7e0; /* subtle gold-tinted bg */
}

/* ---------- Grid helpers ---------- */
.grid-2,
.event-body{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin: 18px 0 0;
}
.event-body.single{ grid-template-columns: 1fr; }

@media (max-width: 900px){
  .grid-2,
  .event-body{ grid-template-columns: 1fr; }
}

/* columns inside event body */
.event-col{ display: grid; gap: 12px; }

/* ---------- Parade key points ---------- */
.key-points{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.key-points li{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items:flex-start;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e6e6e6;
}
.key-points li:last-child{ border-bottom:none; }
.key-points .label{
  font-family: Oswald, Arial, sans-serif;
  color: var(--maroon);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.08em;
}
.key-points .value{ line-height: 1.5; }

/* ---------- Policy / lists ---------- */
.policy{ border-left: 6px solid var(--maroon); }
.list-check{
  margin: 10px 0 8px 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list-check > li{
  position: relative;
  padding-left: 28px;
}
.list-check > li::before{
  content: "✔";
  position: absolute; left: 0; top: 2px;
  font-weight: 700;
  color: var(--gold);
}
.loiter{
  margin-top: 8px;
  padding-left: 18px;
  list-style: disc;
}
.note{
  margin-top: 12px;
  padding: 12px 14px;
  background: #fff7f1;
  border: 1px solid #ffe0b3;
  border-radius: 10px;
}
.signed{ margin-top: 14px; font-weight: 600; }

/* ---------- Shirts / Photos ---------- */
.shirt-cta{ display: grid; gap: 10px; }
.shirt-grid{
  display: grid; gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.shirt-grid img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: #eee;
}

.gallery{ padding: 14px 0 4px; }
.gallery h2{
  font-family: Oswald, Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--maroon);
}
.photo-grid{
  display: grid; gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px){
  .photo-grid{ grid-template-columns: repeat(5, 1fr); }
}
.photo-grid img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eee;
  border-radius: 10px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{ background: var(--maroon); border-color: var(--maroon); }
.btn.outline{ background: transparent; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer{
  border-top: 8px solid var(--gold);     /* gold accent line */
  background: #fff;
  padding: 24px 0 36px;                  /* breathing room above bottom edge */
  box-shadow: 0 -1px 0 rgba(0,0,0,.06) inset; /* subtle separation */
  margin-top: clamp(28px, 6vw, 80px);    /* gap above footer */
}
.site-footer::before{
  content: "";
  display: block;
  height: 6px;
  background: var(--maroon);
  opacity: .95;
}
.footer-inner{
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
  text-align: center;
}
.footer-text{
  margin-top: 14px;
  font-size: 14px;
  color: #6b6b6b;
}

/* ---------- Responsive header tweaks ---------- */
@media (max-width: 900px){
  .site-header{
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "menu"
      "logo";
    justify-items: center;
    text-align: center;
    row-gap: 12px;
  }
  .page-title{ margin-bottom: 4px; }

  .side-links{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .logo{ justify-self: center; }
}

/* ---------- Small phone gutters ---------- */
@media (max-width: 520px){
  .container,
  .page-wrap{ padding-inline: 16px; }
}
/* Center the stack more tightly */
:root{ --page-max: 900px; }           /* a touch narrower to feel centered */
.page-wrap{ max-width: var(--page-max); }

/* Center the card contents and give readable column width */
.event-card{ text-align: center; }
.event-body{ justify-items: center; }
.event-col{
  max-width: 70ch;                    /* comfy reading measure */
  text-align: left;                   /* keep paragraphs readable */
  margin-inline: auto;
}

/* Bigger photos, centered under the dues text */
.photo-grid.big{
  display: grid;
  gap: 14px;
  /* larger tiles: auto-fit rows of ~240–320px depending on screen */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: min(100%, 980px);
  margin: 14px auto 10px;
}
.photo-grid.big img{
  width: 100%;
  aspect-ratio: 4 / 3;                /* larger, landscape feel */
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(140,31,47,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Give the bottom of the page more breathing room */
.spacer{ height: 96px; }              /* was smaller before */
body{ padding-bottom: 24px; }         /* extra safety buffer */
/* ===== Center the Attire & Shirt Orders section more ===== */
#attire-shirts{
  /* make this card a bit narrower and perfectly centered */
  max-width: 760px;           /* tighten as needed: 720 / 680 / etc. */
  margin-left: auto;
  margin-right: auto;
}

#attire-shirts .event-head h2{
  text-align: center;
}

#attire-shirts .event-body{
  grid-template-columns: 1fr; /* single column stack */
  justify-items: center;      /* center inner blocks */
  padding: 22px 24px 26px;
}

#attire-shirts .event-col{
  max-width: none;            /* override any global 60–70ch limits */
  width: 100%;
  text-align: center;         /* center headings + copy for this card */
}

#attire-shirts h3,
#attire-shirts h4{
  text-align: center;
  margin-inline: auto;
}

/* Shirt block fully centered with a nice width */
#attire-shirts .shirt-cta{
  display: grid;
  gap: 12px;
  justify-items: center;
}

#attire-shirts .shirt-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 680px;           /* wider preview area */
  margin: 6px auto 2px;
}

#attire-shirts .shirt-grid img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(140,31,47,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

#attire-shirts .btn{
  justify-self: center;
}
/* ===== Attire & Shirt Orders — smaller, centered, maroon accents ===== */
#attire-shirts{
  max-width: 680px;            /* tighter card width (try 660/640 if you want smaller) */
  margin-left: auto;
  margin-right: auto;
  background: #fff;            /* override any gold wash */
  border-color: var(--maroon); /* card border uses the button red */
  border-top-color: var(--maroon);
}
#attire-shirts .event-head h2{ text-align: center; }

#attire-shirts .event-body{
  grid-template-columns: 1fr;  /* vertical stack */
  justify-items: center;
  padding: 18px 20px 22px;     /* slightly tighter */
}
#attire-shirts .event-col{
  max-width: none;
  width: 100%;
  text-align: center;
  background: transparent;     /* remove light pink-ish panels */
  border: 0;
}

#attire-shirts .shirt-cta{ display: grid; gap: 12px; justify-items: center; }

#attire-shirts .shirt-grid{
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* smaller tiles */
  max-width: 600px;             /* keeps the gallery from getting too wide */
  margin: 6px auto 2px;
}
#attire-shirts .shirt-grid img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--maroon); /* replace the light pink border */
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

#attire-shirts .btn.primary{
  background: var(--maroon);
  border-color: var(--maroon);
}

/* ===== Homecoming (Pink Out Friday) — smaller card, maroon border, no pink panels ===== */
#pink-out{
  max-width: 820px;             /* tighten overall width (bump down to 780 if you want) */
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-color: var(--maroon);  /* card frame uses button red */
  border-top-color: var(--maroon);
}
#pink-out .event-col{
  background: transparent;      /* remove tinted inner panels */
  border: 0;
}

/* (Optional) If you also want the Luau card to get the same treatment, uncomment:
#luau{
  max-width: 820px;
  margin-inline: auto;
  background: #fff;
  border-color: var(--maroon);
  border-top-color: var(--maroon);
}
#luau .event-col{ background: transparent; border: 0; }
*/

/* Keep a comfy bottom buffer so the page isn't flush */
.spacer{ height: 110px; }
/* ===============================
   Alumni Weekend Color Pass (strict)
   =============================== */

/* Palette */
:root{
  --maroon: #8c1f2f;
  --gold:   #f2c14e;
  --ink:    #151515;
  --white:  #ffffff;
}

/* Base / page */
body{
  background: var(--white) !important;  /* remove previous washes */
  color: var(--ink);
}

/* Header */
.site-header{
  background: var(--white) !important;  /* no maroon gradient */
  border-bottom: 1px solid #eee;
  color: var(--ink);
}
.side-links a{ color: var(--maroon); }
.side-links a:hover{ color: var(--ink); }
.side-links a[aria-current="page"]{
  color: var(--maroon);
}
.page-title{ color: var(--maroon); }
.logo img{ filter: none; }

/* Cards */
.event-card{
  background: var(--white);
  border: 1px solid #e9e9e9;
  border-top-color: var(--gold);        /* default accent = gold */
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

/* These feature cards keep a maroon top accent (optional, looks sharp) */
#attire-shirts,
#pink-out,
#luau{
  border-top-color: var(--maroon);
}

.event-head{
  background: transparent !important;   /* remove gold/pink washes */
  border-bottom: 1px solid #f0f0f0;
}
.event-head h2{ color: var(--ink); }

/* Inner columns: no tinted panels */
.event-col{
  background: transparent;
  border: 0;
}

/* Buttons */
.btn{ border-radius: 999px; }
.btn.primary{
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.btn.outline{
  background: var(--white);
  border-color: var(--gold);
  color: var(--maroon);
}

/* Media frames (subtle, on-brand) */
.shirt-grid img,
.photo-grid img{
  border: 2px solid rgba(140,31,47,.18); /* maroon tint */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Gallery section */
.gallery{
  background: transparent !important;   /* no band wash */
  border-top: 0;
  border-bottom: 0;
}

/* Footer: white with maroon/gold accents */
.site-footer{
  background: var(--white) !important;
  border-top: 8px solid var(--gold);
  box-shadow: 0 -1px 0 rgba(0,0,0,.06) inset;
}
.site-footer::before{
  background: var(--maroon);
  opacity: 1;
}
.footer-text{ color: #6b6b6b; }
        /* you can tweak this up/down */

/* ===============================
   Alumni Weekend Look — Thicker Borders + Palette
   =============================== */

/* Palette (locks colors) */
:root{
  --maroon: #8c1f2f;
  --gold:   #f2c14e;
  --ink:    #151515;
  --white:  #ffffff;
}

/* Base + header stay white like Alumni page */
body{ background: var(--white); color: var(--ink); }
.site-header{
  background: var(--white);
  border-bottom: 2px solid #ececec;     /* a bit thicker */
}

/* Nav colors */
.side-links a{ color: var(--maroon); }
.side-links a[aria-current="page"]{
  color: var(--maroon);
}

/* ------- Cards: thicker frame, gold top like Alumni page ------- */
.event-card{
  background: #fff;
  border: 2px solid #e2e2e2;            /* thicker outer border */
  border-top: 10px solid var(--gold);   /* thicker gold accent */
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

/* Keep section headers clean */
.event-head{
  background: transparent;
  border-bottom: 2px solid #f0f0f0;     /* thicker divider */
}
.event-head h2{ color: var(--ink); }

/* Inner columns: no tinted panels, just content */
.event-col{
  background: transparent;
  border: 0;
}

/* ------- Media frames: thicker, on-brand ------- */
.shirt-grid img,
.photo-grid img{
  border: 4px solid rgba(140,31,47,.22); /* maroon-tinted, thicker */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Make the “big” photo grid tiles feel bold but keep layout the same */
.photo-grid.big img{
  border-width: 4px;
}

/* ------- Buttons: bold, on-brand ------- */
.btn{
  border: 3px solid var(--ink);
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}
.btn.primary{
  background: var(--maroon);
  border-color: var(--maroon);
}
.btn.outline{
  background: #fff;
  border-color: var(--gold);
  color: var(--maroon);
}

/* Pills + notes closer to Alumni styling, a touch sturdier */
.pill{
  border: 3px solid var(--gold);
  background: #fff7e0;
  color: var(--maroon);
}
.note{
  background: #fff7f1;
  border: 2px solid #ffe0b3;            /* thicker edge */
  border-radius: 10px;
}

/* Policy accent (if used) — thicker maroon bar */
.policy{ border-left: 8px solid var(--maroon); }

/* Footer: white with strong maroon/gold accents, thicker band */
.site-footer{
  background: #fff;
  border-top: 10px solid var(--gold);
  box-shadow: 0 -1px 0 rgba(0,0,0,.06) inset;
}
.site-footer::before{
  content: "";
  display: block;
  height: 6px;
  background: var(--maroon);
  opacity: 1;
}
.footer-text{ color: #6b6b6b; }

/* Bottom buffer so it’s not flush */
.spacer{ height: 120px; }
/* Make the shirt image border GOLD (Attire & Shirt Orders only) */
#attire-shirts .shirt-grid img{
  border: 4px solid var(--gold) !important; /* overrides maroon/tinted frames */
  border-radius: 12px;                       /* keep your rounded look */
}

/* (nice touch) subtle glow on hover */
#attire-shirts .shirt-grid img:hover{
  box-shadow: 0 8px 22px rgba(242,193,78,.25);
}
/* Order Here button (Attire & Shirt Orders) — GOLD */
#attire-shirts .btn.primary{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);                 /* better contrast on gold */
}

#attire-shirts .btn.primary:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}

#attire-shirts .btn.primary:focus-visible{
  outline: 3px solid rgba(242,19
