/* ============================================
   WSBC - Westport Striped Bass Club
   Main Stylesheet
   ============================================ */

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

:root {
  --navy:      #0d2240;
  --blue:      #1a4a7a;
  --light-blue:#2a6db5;
  --gold:      #c8960c;
  --gold-light:#f0b429;
  --white:     #ffffff;
  --off-white: #f4f6f8;
  --gray:      #6b7280;
  --dark:      #111827;
  --text:      #374151;
  --border:    #e5e7eb;
  --radius:    12px;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,12,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.center-btn { text-align: center; margin-top: 2.5rem; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0.75rem 0;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,34,64,0.55) 0%,
    rgba(13,34,64,0.7) 60%,
    rgba(13,34,64,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- WELCOME STRIP --- */
.welcome-strip {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
}
.strip-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.strip-item i { color: var(--gold); font-size: 1rem; }
.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

/* --- SECTIONS --- */
.section {
  padding: 5rem 0;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title.center { text-align: center; }
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 3rem;
}

/* --- TWO COLUMN LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text p {
  color: var(--gray);
  margin-bottom: 1rem;
}
.col-text .btn { margin-top: 1rem; }
.col-image { position: relative; }
.rounded-img {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.image-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

/* --- FEATURES GRID --- */
.features-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon i {
  color: var(--gold);
  font-size: 1.4rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* --- PHOTO HIGHLIGHTS --- */
.photo-highlights { background: var(--white); }
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.photo-item.tall { grid-row: span 2; }
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.07); }
.photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,34,64,0.85), transparent);
  padding: 1.25rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}
.photo-item:hover .photo-overlay { transform: translateY(0); }

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,34,64,0.92), rgba(26,74,122,0.88));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.cta-content strong { color: var(--gold); }

/* --- MEETING SECTION --- */
.meeting-section { background: var(--off-white); }
.meeting-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}
.meeting-info address {
  margin-top: 1.25rem;
  color: var(--gray);
  line-height: 1.9;
}
.meeting-info address i {
  color: var(--gold);
  margin-right: 0.5rem;
}

/* --- PAGE HEADER --- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  opacity: 0.7;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* --- GALLERY PAGE --- */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-masonry {
  columns: 3;
  gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .photo-overlay {
  transform: translateY(0);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .photo-overlay { opacity: 1; }

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

/* --- STANDINGS / TABLES --- */
.standings-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1.25rem 1.75rem;
  margin-bottom: 0;
}
.standings-section-header i {
  font-size: 1.6rem;
  color: var(--gold);
}
.standings-section-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--white);
}
.standings-section-header span {
  font-size: 0.82rem;
  opacity: 0.75;
}
.standings-section-header + div {
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.place-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.875rem;
}
.place-badge.gold  { color: #c8960c; }
.place-badge.silver { color: #6b7280; }
.place-badge.bronze { color: #b45309; }
.standings-photo-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
.standings-photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 320px;
  box-shadow: var(--shadow);
}
.standings-photo-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}
.standings-photo-card p {
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: var(--gray);
  background: var(--off-white);
}
.standings-intro {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-left: 5px solid var(--gold);
}
.standings-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr:hover td { background: #e8f0f8; }
.rank-1 td:first-child { color: #c8960c; font-weight: 800; font-size: 1.1rem; }
.rank-2 td:first-child { color: #6b7280; font-weight: 700; }
.rank-3 td:first-child { color: #b45309; font-weight: 700; }
.trophy-icon { color: var(--gold); margin-right: 0.3rem; }

/* --- REGULATIONS --- */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.reg-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.reg-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.reg-card-header i { color: var(--gold); }
.reg-card-body { padding: 1.25rem 1.5rem; }
.reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.reg-table th {
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.reg-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.reg-table tr:last-child td { border-bottom: none; }
.alert-box {
  background: #fef3c7;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #92400e;
}
.alert-box i { margin-right: 0.5rem; }

/* --- SPONSORS --- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.sponsor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.sponsor-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sponsor-icon i { color: var(--gold); font-size: 1.5rem; }
.sponsor-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.sponsor-card p { font-size: 0.875rem; color: var(--gray); }
.sponsor-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.media-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.media-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--gold); }
.media-card p { font-size: 0.875rem; opacity: 0.8; }
.sponsor-cta {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  border: 1px dashed var(--border);
}
.sponsor-cta h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.sponsor-cta p { color: var(--gray); margin-bottom: 1.25rem; }

/* --- ABOUT PAGE --- */
.officers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.officer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.officer-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.officer-avatar i { color: var(--gold); font-size: 1.75rem; }
.officer-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.officer-card .role { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-item {
  padding: 1.5rem;
  background: rgba(13,34,64,0.05);
  border-radius: var(--radius);
  text-align: center;
}
.value-item i { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }
.value-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.value-item p { font-size: 0.875rem; color: var(--gray); }

/* --- OFFICERS ENHANCED --- */
.officer-president-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 0.5rem;
}
.officer-avatar-lg {
  width: 72px; height: 72px;
  background: rgba(200,150,12,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.officer-avatar-lg i { color: var(--gold); font-size: 2rem; }
.committee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.committee-member {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 200px;
}
.committee-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.committee-avatar i { color: var(--gold); font-size: 1rem; }
.committee-member strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.committee-member span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-info-card h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-info-card p { opacity: 0.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--gold); }
.contact-detail-text strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.contact-detail-text span { opacity: 0.75; font-size: 0.9rem; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(42,109,181,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- MEMBERSHIP --- */
.membership-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.membership-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  position: relative;
  text-align: center;
}
.membership-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.price-display { margin: 1.25rem 0; }
.price-display .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-display .price sup { font-size: 1.5rem; vertical-align: super; }
.price-display .period { color: var(--gray); font-size: 0.9rem; }
.membership-features { text-align: left; margin: 1.5rem 0; }
.membership-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.membership-features li i { color: var(--gold); font-size: 0.8rem; }

/* --- FISHERMAN OF YEAR --- */
.foy-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
}
.foy-hero .trophy { font-size: 4rem; margin-bottom: 1rem; }
.foy-hero h2 { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.foy-hero h3 { font-size: 2.5rem; font-weight: 800; }
.foy-hero p { opacity: 0.8; margin-top: 0.5rem; }

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.footer-col p i { color: var(--gold); margin-right: 0.5rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; z-index: 1000; }
  .nav-link { font-size: 1.2rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-item.tall { grid-row: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .meeting-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .officers-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .strip-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sponsor-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
