/* ═══════════════════════════════════════════════════════════
   LARGA - Lambton Area Retiree's Golf Association
   Main Stylesheet
   ══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Primary Brand Greens */
  --forest:   #194A3A;
  --mid:      #1C7C54;
  --light:    #9FD0A9;
  
  /* Light Backgrounds */
  --cream:    #F6FBFF;
  --parchment: #F5EFED; 
  
  /* Accent / Highlight */
  --highlight:   #69B578;
  --highlight-lt:  #C8E4CE;
  
  /* Dark Neutrals */
  --dark:     #181D27;
  --text:     #181D27;
  --muted:    #4b6b5d;

  /* Type scale */
  --text-sm: 0.95rem;
  --text-base: 1.05rem;
  --text-lg: 1.25rem;
  --text-xl: 1.6rem;
  --text-xxl: 2.2rem;

  /* Line heights */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: var(--text-base);
  background: var(--cream);
  color: var(--text);
  line-height: var(--lh-relaxed);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: 72px; /* Account for fixed nav */
}

/* ─── NAVIGATION ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest);
  border-bottom: 3px solid var(--highlight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--highlight-lt);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-text span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
	text-align: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 1.1rem;
  height: 72px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 9px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--highlight);
  border-bottom-color: var(--highlight);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* ─── HERO SECTION ──────────────────────────────────────── */
.hero {
  min-height: 80vh;
  background:
    linear-gradient(160deg, rgba(24,29,39,0.88) 0%, rgba(25,74,58,0.72) 50%, rgba(28,124,84,0.82) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 80px),
    linear-gradient(135deg, #181D27 0%, #1C7C54 45%, #194A3A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 70%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge {
  position: relative;
  width: clamp(170px, 24vw, 420px);
  height: clamp(170px, 24vw, 420px);
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.55));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  text-align: left;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  max-width: 740px;
}

.hero h1 em {
  font-style: normal;
  color: var(--highlight-lt);
}

.hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-top: 1rem;
  text-align: left;
  max-width: 640px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight), transparent);
  margin: 1.5rem 0;
}

.hero-intro {
  max-width: 720px;
  text-align: left;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 2.2rem;
}

.second-paragraph {
	margin-top: 1rem;
}

.bottom-margin {
	margin-bottom: 1rem;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1rem 2.4rem;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--highlight);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}

.btn-gold:hover {
  background: var(--highlight-lt);
  box-shadow: 0 6px 26px rgba(201,168,76,0.55);
}

.btn-outline {
  background: transparent;
  color: #F6FBFF;
  border: 2px solid rgba(246,251,255,0.45);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(24,29,39,0.45);
}

.btn-outline:hover {
  border-color: var(--highlight-lt);
  color: var(--highlight-lt);
}

.btn-outline-dark:hover {
  border-color: var(--highlight);
  color: var(--highlight);
}

.section-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2rem;
}

/* ─── ANNOUNCEMENT BANNERS ──────────────────────────────── */
.announcement,
.announcement-highlight {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.announcement {
  background: var(--dark);
  color: var(--cream);
  padding: 2rem 2rem;
}

.announcement-highlight {
  background: var(--light);
  color: var(--dark);
  padding: 1.5rem 1.5rem;
}

.announcement strong {
  color: var(--cream);
  font-weight: 800;
}

#announcement-icon {
  height: 1.5em;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5em;
}

/* ─── SECTIONS ──────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-spacing {
  padding-top: 5rem;
}

.section-full {
  padding: 5rem 2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-rule .rule-line {
  flex: 1;
  height: 1px;
  background: var(--highlight);
  opacity: 0.6;
}

.section-rule .rule-icon {
  color: var(--highlight);
  font-size: 1.1rem;
}

.section-icons {
  height: 1.5em;
  max-width: 1.5em;
  width: auto;
  object-fit: contain;
}

/* ─── CARD GRID ─────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.card {
  background: linear-gradient(180deg, #F6FBFF 0%, #EBF6FF 100%);
  border: 1px solid rgba(30,77,43,0.1);
  border-top: 4px solid var(--light);
  padding: 1.8rem;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card-icon img {
  height: 1.1em;
	max-width: 1.1em;
  width: auto;
	object-fit: contain;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* Dark card variants (for strip section) */
.card-dark {
  background: rgba(255,255,255,0.08);
  border-top-color: var(--highlight-lt);
}

.card-dark-featured {
  background: rgba(255,255,255,0.08);
  border: 4px solid var(--highlight-lt);
}

.card-dark h3, .card-dark-featured h3 {
  color: var(--highlight-lt);
}

.card-dark p {
  color: rgba(255,255,255,0.75);
}

/* ─── INFO BOX ───────────────────────────────────────────── */
.info-box {
  background: var(--highlight-lt);
  border-left: 5px solid var(--mid);
  padding: 1.6rem 2rem;
  margin: 1.5rem 0;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.info-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.info-box-parchment {
  background: var(--parchment);
  border-left-color: var(--accent);
}

.info-announcement {
  height: 1em;
  width: auto;
  margin-right: 0.5em;
}

/* ─── GREEN STRIP SECTION ───────────────────────────────── */
.strip {
  background: var(--forest);
  color: white;
  padding: 4rem 2rem;
}

.strip .section {
  color: white;
}

.strip .section-title {
  color: var(--highlight-lt);
}

.strip p {
  color: rgba(255,255,255,0.82);
}

.strip .rule-line {
  background: rgba(255,255,255,0.3);
}

/* ─── PRESIDENT MESSAGE ─────────────────────────────────── */
.president-card {
  background: white;
  border: 1px solid rgba(30,77,43,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 3rem;
  position: relative;
  border-radius: 2px;
}

.president-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--highlight);
  opacity: 0.3;
  pointer-events: none;
}

.president-card p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.president-card .sig {
  border-top: 1px solid rgba(30,77,43,0.15);
  padding-top: 1.2rem;
  margin-top: 1.5rem;
}

.president-card .sig strong {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  font-size: 1.1rem;
}

.president-card .sig span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.president-intro {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}

.president-contact {
  margin-top: 0.5rem;
  display: block;
}

/* ─── SCHEDULE TABLE ────────────────────────────────────── */

.title-row {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.print-btn {
	display: block;
}

.print-btn .btn::before {
  content: '🖨️ Print Schedule';
}

.schedule-intro {
  margin-bottom: 0.5rem;
}

.schedule-note {
  margin-bottom: 1.5rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
}

.schedule-table th {
  background: var(--forest);
  color: var(--highlight-lt);
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--highlight);
}

.schedule-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  vertical-align: middle;
}

.schedule-table tr:nth-child(even) td {
  background: rgba(30,77,43,0.035);
}

.schedule-table tr:hover td {
  background: rgba(201,168,76,0.1);
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.badge-green {
  background: rgba(30,77,43,0.12);
  color: var(--forest);
}

.badge-gold {
  background: rgba(201,168,76,0.2);
  color: #8a6d1e;
}

.badge-note {
  background: rgba(100,100,100,0.1);
  color: #555;
}

.schedule-footer {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── TIMELINE (ABOUT PAGE) ─────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--highlight) 0%, var(--light) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.75rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.7rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--highlight);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--highlight);
}

.timeline-item .year {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--highlight);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.timeline-item h3 {
  color: var(--forest);
  margin: 0.3rem 0 0.5rem;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── EXECUTIVE BOARD (ABOUT PAGE) ──────────────────────── */
.executive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.executive-member {
  background: linear-gradient(180deg, #F6FBFF 0%, #EBF6FF 100%);
  border: 1px solid rgba(30,77,43,0.1);
  border-left: 4px solid var(--highlight);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.executive-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.executive-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--highlight);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  filter: contrast(1.05) saturate(1.1);
}

.executive-photo.placeholder {
  background: linear-gradient(135deg, var(--forest) 0%, var(--mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
}

.executive-role {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.executive-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.executive-contact {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.executive-contact a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s;
}

.executive-contact a:hover {
  color: var(--highlight);
}

/* ─── JOIN FORM ─────────────────────────────────────────── */
.form-wrap {
  background: white;
  padding: 2.5rem;
	margin-top: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(30,77,43,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}

input,
select,
textarea {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  border: 1.5px solid rgba(30,77,43,0.2);
  padding: 0.7rem 0.9rem;
  border-radius: 2px;
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--forest);
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

.form-footer {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
	height: 0;
  overflow: hidden;
}

.form-footer small {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-error {
	display: none; 
	background: #ffebee; 
	border-left: 4px solid #d32f2f; 
	padding: 1rem 1.25rem; 
	margin-bottom: 1.5rem; 
	border-radius: 2px;
	font-family: 'Raleway', sans-serif;
}

.form-error strong {
	color: #d32f2f;
	font-weight: 700;
  margin-right: 0.5rem;
}

.form-error span {
	color: #c62828;
}


/* ─── FINAL CTA (ABOVE FOOTER) ────────────────────── */
.contact-section {
  background: linear-gradient(180deg, var(--parchment) 0%, #e8e2dc 100%);
  padding: 2rem 2rem;
  border-top: 3px solid var(--highlight);
  text-align: center;
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-inner p {
  margin: 0 auto 1rem;
  max-width: 620px;
}

.contact-flex {
  background: white;
  border: 1px solid rgba(25,74,58,0.12);
  border-left: 4px solid var(--highlight);
  padding: 1.5rem 1rem;
  border-radius: 2px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.contact-president {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest);
  font-weight: 600;
}

.contact-president span {
  font-size: 1rem;
  color: var(--forest);
  font-weight: 500;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--highlight);
}

.contact-info a::before {
  content: '';
  font-size: 1rem;
}

.contact-info a[href^="tel"]::before {
  content: '📞';
}

.contact-info a[href^="mailto"]::before {
  content: '✉️';
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 3rem 2rem;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-top: 3px solid var(--highlight);
}

.foot-logo {
  display: block;
  width: 60px;
  margin: 0 auto 1rem;
  opacity: 0.75;
}

footer p {
  margin-top: 0.4rem;
}

footer a {
  color: var(--highlight);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-tagline {
  margin-top: 0.75rem;
}

.footer-copyright {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-credit {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */

/* Mobile */

@media (max-width: 400px) {
    .title-row .print-btn .btn {
      padding: 0.75rem 1.25rem;
      font-size: 0.8rem;
    }
  }

/* ─── MOBILE ONLY (0-599px) ─────────────────────────────── */
@media (max-width: 599px) {
	.hero-eyebrow {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }
	
	.hero-eyebrow .no-wrap {
		white-space: nowrap;
	}
	
	.hero-eyebrow .disappear {
		display: none;
	}

	.section-rule .rule-icon {
    display: none;
  }
	
	/* Mobile Schedule Card layout */
  /* Hide table headers */
  .schedule-table thead {
    display: none;
  }
  
  /* Make each row a card */
  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }
  
  .schedule-table tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(30,77,43,0.1);
    border-left: 4px solid var(--highlight);
    padding: 0.75rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  
  .schedule-table td {
    padding: 0.4rem 0;
    border: none;
    text-align: left;
    position: relative;
    padding-left: 50%; /* Make room for label */
  }
  
  /* Add labels before each cell */
  .schedule-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-right: 0.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--forest);
    letter-spacing: 0.05em;
  }
  
  .schedule-table tr:nth-child(even) {
    background: white;
  }
	
		/* SCHEDULE PAGE */
	.title-row {
		display: block;
  }
	
	.title-row .print-btn {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
  }
	
	.print-btn .btn::before {
    content: '🖨️';
    font-size: 1.4rem;
  }
 	
	.print-btn .btn {
    padding: 0.75rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
	
  .title-row .print-btn .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.85rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
}

/* ─── TABLET (600-720px) ────────────────────────────────── */

@media (min-width: 600px) and (max-width: 720px) {
  
	/* card grid in 2 columns */
	.card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	/* Schedule Page: horizontal scroll schedule */
		
	.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .schedule-table {
    min-width: 600px;
  }
	
	  /* Add visual hint that table scrolls */
  .table-wrapper::after {
    content: '← Swipe to see more →';
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.5rem;
    font-style: italic;
  }

	/* Print button: "Print" text */
  .print-btn .btn {
    font-size: 0;
  }
  
  .print-btn .btn::before {
    content: '🖨️ Print';
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .print-btn .btn {
    padding: 0.75rem 1.5rem;
  }
}

/* ─── MOBILE & TABLET SHARED (0-900px) ──────────────────── */
@media (max-width: 900px) {
	
		/* NAVIGATION */
	.nav-logo img {
		height: 50px;
		width: auto;
	}

	.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--forest);
    padding: 1rem 0;
    border-top: 2px solid var(--highlight);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    line-height: 1;
    padding: 0.85rem 1.5rem;
    border-bottom: none;
    border-left: 3px solid transparent;
    height: auto;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    border-left-color: var(--highlight);
    border-bottom: none;
  }
  
  .hamburger {
    display: flex;
  }
	
	/* SECTION RULES / ICONS */

		
	.section-rule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
  }
	
	.section-rule .rule-icon {
    order: -1;  /*Move to start */
    flex-shrink: 0;
  }
  
  .section-rule .rule-line {
    flex: 1;
  }
  
  /* Hide second line on mobile */
  .section-rule .rule-line:last-of-type {
    display: none;
  }
	
	.section-icons {
		height: 1.3em;
		width: auto;
		max-width: 1.3em;
	}
	
	.card-icon img { 
		height: .9em;
		width: auto;
		max-width: 0.9em;
	}
 
 /* HERO */

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
		gap: 1rem;
  }

  .hero-content {
    order: 2;
  }

  .hero-logo {
    order: 1;
  }
	
	.hero-badge {
		margin-bottom: 0rem;
	}

  .hero h1,
  .hero-sub,
  .hero-intro {
    text-align: center;
		margin-left: auto;
		margin-right: auto;
  }
	
	.hero-divider {
		margin: 1.5rem auto;
	}

  .hero-cta-group {
    justify-content: center;
  }
	
	.card-icon img {
    height: 1em;
 }
 
 /* ABOUT PAGE */
  .executive {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
	
	.timeline-item::before {
		left: -2.3rem;
	}
	
 /* PRESIDENTS MESSAGE */
  .president-card {
    padding: 1.8rem;
  }
	
	 /* JOIN PAGE */
  .form-grid {
    grid-template-columns: 1fr;
  }
	
}

/* Laptop & Desktop */
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large desktop (4-up layout) */
@media (min-width: 1400px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
