/* =========================
   D-Loves Retirement (R/W/B Theme)
   ========================= */
:root{
  --patriot-red: #b22234;
  --patriot-blue: #1e3c72;
  --patriot-blue-deep: #0f2a56;
  --patriot-white: #ffffff;
  --ink: #223;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* PAGE BACKGROUND: deep navy with a subtle sheen */
body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--patriot-blue-deep) 0%, var(--patriot-blue) 100%);
  min-height: 100vh;
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* HEADER: white card, R/W/B top stripe accent */
.header {
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-top: 8px solid var(--patriot-red);
  position: relative;
}
.header::after{
  content:"";
  position:absolute; left:0; top:0;
  width:100%; height:8px;
  background:
    linear-gradient(90deg, var(--patriot-red) 0 33%, var(--patriot-white) 33% 66%, var(--patriot-blue) 66% 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  opacity:.18;        /* subtle */
}

.header h1 {
  font-size: 3rem;
  color: var(--patriot-blue);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.06);
}

.header h2 { font-size: 1.5rem; color: #375fa3; margin-bottom: 20px; }

/* BADGE: red→blue pill */
.badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--patriot-red), var(--patriot-blue));
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin: 10px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

/* HERO PHOTO: circular, white border */
.retiree-photo{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;          /* crops inside the circle */
  object-position: center;    /* center the crop */
  border: 6px solid var(--patriot-white);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  margin: 20px auto;
  display: block;
}
#retireePhoto { transition: opacity .6s ease; }

/* legacy placeholder (kept) */
.hero-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--patriot-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  display: block;
}

/* GRID CARDS */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(17,34,68,.06);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.card h3 {
  color: var(--patriot-blue);
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--patriot-red);
  padding-bottom: 10px;
}

/* EVENT DETAILS: blue panel with thin red top border */
.event-details {
  background: linear-gradient(135deg, #496eb9 0%, var(--patriot-blue) 100%);
  color: #fff;
  text-align: center;
  border-top: 4px solid var(--patriot-red);
}
.event-details h3 { color: #fff; border-bottom-color: rgba(255,255,255,.35); }
.event-info { font-size: 1.1rem; margin: 15px 0; }

/* PHOTO GALLERY: white card */
.photo-gallery {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  border: 1px solid rgba(17,34,68,.06);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transition: transform .3s ease;
  cursor: pointer;
  border: 2px solid rgba(30,60,114,.15);
}
.gallery-item:hover { transform: scale(1.05); }
.gallery-item img { width: 100%; height: 150px; object-fit: cover; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff;
  padding: 20px 10px 10px;
  font-size: .9rem;
  text-align: center;
}

/* CAREER TIMELINE: white card */
.career-timeline {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  border: 1px solid rgba(17,34,68,.06);
}

/* Each row: logo (left) + text (center, flex) + badge (right) */
.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;                       /* use gap instead of manual margins */
  margin-bottom: 20px;
  padding: 15px;
  background: #f5f7ff;            /* very light blue */
  border-radius: 10px;
  border-left: 6px solid var(--patriot-blue);
}

/* Left logo/emblem */
.timeline-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;              /* circular org logo */
  object-fit: cover;
  border: 3px solid var(--patriot-white);
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  background: #fff;
}

/* Middle text grows to fill space */
.timeline-content {
  flex: 1;
  min-width: 0;                    /* prevents overflow in narrow layouts */
}
.timeline-content h4 {
  color: var(--patriot-blue);
  margin-bottom: 5px;
}

/* Right badge (officer/agency badge) */
.timeline-badge {
  flex-shrink: 0;
  width: 80px;
  aspect-ratio: 1 / 1;        /* keep it square */
  height: auto;               /* let aspect-ratio control height */
  object-fit: contain;        /* show the whole badge (no crop) */
  background: #fff;           /* behind transparent PNGs */
  padding: 6px;               /* breathing room so it doesn’t touch border */
  border: 3px solid var(--patriot-blue);
  border-radius: 12px;        /* use 50% if you want a circle */
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  display: block;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .timeline-badge {
    margin-top: 8px;               /* sits under the text on mobile */
  }
}

/* RSVP: alternate white card with red accent */
.rsvp-section {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px; margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  border: 1px solid rgba(17,34,68,.06);
  border-top: 6px solid var(--patriot-red);
}

.rsvp-form { max-width: 500px; margin: 0 auto; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 8px;
  font-weight: bold; color: var(--patriot-blue);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px;
  border: 2px solid #d9e1f2; border-radius: 8px;
  font-size: 1rem; transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--patriot-blue);
  box-shadow: 0 0 0 4px rgba(30,60,114,.12);
}

/* BUTTONS: primary blue, red hover */
.submit-btn {
  background: linear-gradient(45deg, #4c71c0, var(--patriot-blue));
  color: #fff; padding: 15px 30px;
  border: none; border-radius: 28px;
  font-size: 1.1rem; font-weight: bold;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
  box-shadow: 0 10px 20px rgba(30,60,114,.25);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(178,34,52,.25);
  background: linear-gradient(45deg, var(--patriot-red), #7a1e2b);
}

.success-message {
  background: linear-gradient(45deg, #2e7d32, #5bb75b);
  color: #fff; padding: 15px; border-radius: 10px;
  text-align: center; margin: 20px 0; display: none;
  animation: slideIn .5s ease;
}

/* ANIMS */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* NAV BUTTONS: white chip with blue border; active = red */
.nav-buttons {
  position: fixed; top: 20px; right: 20px;
  display: flex; gap: 10px; z-index: 100;
}
.nav-btn {
  background: rgba(255,255,255,.95);
  border: 2px solid var(--patriot-blue); color: var(--patriot-blue);
  padding: 10px 15px; border-radius: 25px;
  cursor: pointer; font-weight: bold;
  transition: all .25s ease; text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.nav-btn:hover { background: var(--patriot-blue); color: #fff; }
.nav-btn.active { background: var(--patriot-red); border-color: var(--patriot-red); color: #fff; }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* RSVP SUMMARY: blue panel with light text */
.rsvp-summary {
  background: linear-gradient(135deg, #4d6fbf 0%, var(--patriot-blue) 100%);
  color: #fff; text-align: center; border-radius: 15px;
  padding: 30px; margin-bottom: 30px;
  border-top: 4px solid var(--patriot-red);
}
.summary-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 20px; margin-top: 20px;
}
.stat-box {
  background: rgba(255,255,255,.18);
  padding: 20px; border-radius: 10px; backdrop-filter: blur(10px);
}
.stat-number { font-size: 2rem; font-weight: bold; display: block; }

/* RSVP LIST: white card */
.rsvp-list {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-radius: 15px; padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  border: 1px solid rgba(17,34,68,.06);
}
.rsvp-item {
  background: #f7f9ff;
  border-radius: 10px; padding: 20px; margin-bottom: 15px;
  border-left: 6px solid var(--patriot-blue); transition: transform .2s ease;
}
.rsvp-item:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,.1); }
.rsvp-item.attending { border-left-color: #2e7d32; background: linear-gradient(90deg, #e6f4ea 0%, #f7f9ff 25%); }
.rsvp-item.not-attending { border-left-color: #b22234; background: linear-gradient(90deg, #fde8ea 0%, #f7f9ff 25%); }
.rsvp-item.maybe { border-left-color: #e09b13; background: linear-gradient(90deg, #fff2d6 0%, #f7f9ff 25%); }

.rsvp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.rsvp-name { font-size: 1.2rem; font-weight: bold; color: var(--patriot-blue); }
.rsvp-status { padding: 5px 15px; border-radius: 20px; font-size: .9rem; font-weight: bold; }
/* Scope pill colors to the status element so they don't override other chips */
.rsvp-status.status-yes   { background: #2e7d32; color: #fff; }
.rsvp-status.status-no    { background: #b22234; color: #fff; }
.rsvp-status.status-maybe { background: #e0a800; color: #212529; }

/* MODAL */
.modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0;
  width: 100%; height: 100%; background-color: rgba(0,0,0,.9); animation: fadeIn .3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  display: block; margin: 5% auto; max-width: 90%; max-height: 80%; border-radius: 10px;
}
.close {
  position: absolute; top: 20px; right: 35px; color: #fff;
  font-size: 40px; font-weight: bold; cursor: pointer;
}
.close:hover { opacity: .7; }

/* Golf Outing Banner Card (single source of truth) */
.golf-banner-card {
  border-radius: 15px;
  overflow: hidden;
  margin: 30px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  background: #fff;
  text-align: center;
  max-width: 550px;
  width: 100%;
}
.golf-banner-img { 
   display: block; width: 100%;
   height: auto; 
   border-radius: 15px 15px 0 0; 
   object-fit: contain;
   background: #f8f9fc;
}
.golf-banner-footer {
  padding: 16px;
  background: #f8f9fc;
  border-radius: 0 0 15px 15px;
}
.golf-btn {
  background: var(--patriot-red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.golf-btn:hover {
  background: #7a1e2b;
  transform: translateY(-2px);
}

/* --- Scrolling gallery (carousel) --- */
.scroll-gallery{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.sg-track{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 32%);
  gap: 12px;
  padding: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  border: 1px solid rgba(17,34,68,.06);
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 900px){ .sg-track{ grid-auto-columns: 70%; } }
@media (max-width: 520px){ .sg-track{ grid-auto-columns: 85%; } }

.sg-item{
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 2px solid rgba(30,60,114,.15);
}
.sg-item:hover{ transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.sg-item img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.sg-cap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-align: center;
  font-size: 0.85rem;
  width: 100%;
}
/* arrows */
.sg-btn{
  appearance: none;
  border: 0;
  background: var(--patriot-blue);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 999px;
  font-size: 24px; line-height: 42px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  transition: transform .1s ease, opacity .2s ease, background .2s ease;
}
.sg-btn:hover{ transform: translateY(-1px); background: var(--patriot-red); }
.sg-btn:disabled{ opacity: .4; cursor: default; }

/* RESPONSIVE TWEAKS LAST */
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
  .header h1 { font-size: 2rem; }
  .container { padding: 10px; }
  .card { padding: 20px; }
  .nav-buttons { flex-direction: column; top: 10px; right: 10px; }
  .timeline-item { flex-direction: column; text-align: center; }
  .timeline-photo { margin-right: 0; margin-bottom: 15px; }
}

/* Career Highlights layout */
.career-highlights{
  background: rgba(255,255,255,.98);
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  border: 1px solid rgba(17,34,68,.06);
}
.hl-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px){
  .hl-grid{ grid-template-columns: 1fr; }
}
.hl-card{
  display: grid;
  grid-template-columns: 1.4fr 1fr;        /* text | image */
  gap: 14px;
  background: #f7f9ff;
  border-left: 6px solid var(--patriot-blue);
  border-radius: 12px;
  padding: 16px;
}
@media (max-width: 700px){
  .hl-card{ grid-template-columns: 1fr; }
}
.hl-content h4{
  color: var(--patriot-blue);
  margin-bottom: 8px;
}
.hl-content ul{
  margin-left: 18px;
  margin-bottom: 10px;
}
.hl-content li{
  margin: 4px 0;
}
.hl-btn{
  background: var(--patriot-blue);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(30,60,114,.18);
  transition: transform .2s ease, background .2s ease;
}
.hl-btn:hover{ background: var(--patriot-red); transform: translateY(-1px); }

/* image thumb (clickable) */
.hl-media{
  margin: 0;
  border: 2px solid rgba(30,60,114,.15);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  align-self: start;
}
.hl-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Venue Detail Card */
.venue-details-card {
  border-radius: 15px;
  overflow: hidden;
  margin: 30px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  max-width: 1200px;
  width: 100%;
  background: url('assets/venuebanner.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 300px;
  color: #fff;
}

/* 3D Ring */
.ring-wrap{
  width:min(100%, 900px);
  aspect-ratio: 16/9;
  margin:auto;
  perspective: 1200px;
  position: relative;
}
.ring{
  width:100%; height:100%;
  position:relative;
  transform-style: preserve-3d;
  animation: ring-spin 18s linear infinite;
  will-change: transform;
}
/* Pause rotation when hovering the area */
.ring-wrap:hover .ring{ animation-play-state: paused; }

.ring img{
  position:absolute; top:50%; left:50%;
  width:240px; height:320px;
  object-fit: cover;
  border-radius:14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transform: translate(-50%,-50%); /* base; JS will add rotateY/translateZ */
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .2s ease;
  cursor: pointer;
}
.ring img:hover{
  box-shadow: 0 18px 40px rgba(0,0,0,.38);
  transform: translate(-50%,-50%) scale(1.03) rotateY(var(--ry,0deg)) translateZ(var(--tz,0px));
}

@keyframes ring-spin{
  from{ transform: rotateY(0deg); }
  to  { transform: rotateY(-360deg); }
}

/* Responsive */
@media (max-width: 700px){
  .ring img{ width:160px; height:220px; }
}

/* Minimal lightbox */
.ring-lb{
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.86);
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
  z-index: 9999;
}
.ring-lb[aria-hidden="false"]{ opacity: 1; pointer-events: auto; }

.ring-lb img{
  max-width: 92vw; max-height: 90vh;
  border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.4);
  background: #0b0f1a;
}

.ring-lb-close{
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,.4); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: .45rem .65rem; cursor: pointer;
}
.ring-lb-close:hover{ background: rgba(255,255,255,.12); }

/* Optionally hide the ring on the Golf page (leave if you ever add a ring there) */
#golf-page .ring-wrap { display: none !important; }

/* Golf Detail Card */
.golf-details-card {
  border-radius: 15px;
  overflow: hidden;
  margin: 30px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  max-width: 1200px;
  width: 100%;
  background: url('assets/golfouting.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 300px;
  color: #fff;
}

/* overlay to make text readable */
.golf-details-overlay {
  background: rgba(0,0,0,0.45);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.golf-details-overlay h3,
.golf-details-overlay p { margin: 0 0 10px; }

/* --- Mobile hamburger menu --- */
.mobile-nav-toggle {
  display: none;             /* hidden on desktop */
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1100;
  width: 42px;
  height: 42px;
  border: 2px solid var(--patriot-blue);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.mobile-nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--patriot-blue);
  transition: transform .2s ease, opacity .2s ease;
}

/* Slide-down panel */
.mobile-nav {
  display: none;             /* use [hidden] attribute by default */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1099;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17,34,68,.08);
  padding: 68px 16px 16px;   /* top padding clears the toggle button area */
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.mobile-nav .nav-btn {
  display: block;
  width: 100%;
  margin: 8px 0;
  text-align: center;
}

/* Show hamburger / hide desktop chips on small screens */
@media (max-width: 768px) {
  .mobile-nav-toggle { display: block; }
  .nav-buttons { display: none; }  /* hide desktop chip buttons */
  .mobile-nav[aria-hidden="false"] { display: block; }
  .mobile-nav:not([hidden]) { display: block; } /* also show if 'hidden' removed */
}

/* --- Banner pair: golf + venue side-by-side and aligned (single version) --- */
.banner-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px auto;
  max-width: 1200px;
}
.banner-row .golf-banner-card{
  display: grid;
  grid-template-rows: 1fr auto;
  max-width: none;
}
.banner-row .golf-banner-img{
  width: 100%;
  height: 280px;               /* keep the same visual height */
  object-fit: contain;         /* show full image, no cut off */
  background: #f8f9fc;         /* subtle backdrop behind letterboxing */
  display: block;
  border-radius: 15px 15px 0 0;
}
.banner-row .golf-banner-footer{
  padding: 16px;
  background: #f8f9fc;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px){
  .banner-row{ grid-template-columns: 1fr; }
  .banner-row .golf-banner-img{ height: 220px; }
  .banner-row .golf-banner-footer{ min-height: 60px; }
}

/* --------- Golf Outing (optional accent) --------- */
.rsvp-item.golf { border-left-color: #1f7a1f; }
