body{margin:0;font-family:Inter,Arial,sans-serif;background:#f6f8fb;color:#1b1f23}
.site-header{background:linear-gradient(135deg,#0b1a33,#112a52);color:#fff}
.header-bar{max-width:1200px;margin:auto;padding:1rem;display:flex;align-items:center;gap:1rem}
.site-logo{height:60px}
.site-name{font-size:1.3rem;font-weight:600}
.hero{text-align:center;padding:3rem 1rem}
.navbar{background:#0b1a33}
.nav-menu{list-style:none;margin:0;padding:0;display:flex;justify-content:center}
.nav-menu a{color:#fff;padding:1rem;display:block;text-decoration:none;font-weight:600}
.nav-menu a:hover{background:rgba(255,255,255,0.12)}
.content{max-width:1200px;margin:auto;padding:3rem 1rem}
.card{background:#fff;border-radius:10px;padding:2rem;box-shadow:0 6px 20px rgba(0,0,0,.08)}
.site-footer{background:#0b1a33;color:#fff;padding:2rem 1rem;text-align:center}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #ffffff;
}

/* HEADER */
.top-header {
  background: #0b1a33;
  color: #fff;
}
.top-inner {
  max-width: 1300px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo { height: 60px; }
.club-name {
  font-size: 1.4rem;
  font-weight: 600;
}

/* NAV */
.main-nav {
  background: #112a52;
  display: flex;
  justify-content: center;
}
.main-nav a {
  color: #fff;
  padding: 1rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
}
.main-nav a:hover {
  background: rgba(255,255,255,0.15);
}

/* HERO */
.hero {
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(
      rgba(11, 26, 51, 0.78),
      rgba(11, 26, 51, 0.85)
    ),
    url("../images/swla.jpg") center/cover no-repeat;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: auto;
}
.hero-actions {
  margin-top: 2rem;
}
.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0.5rem;
}
.btn.primary {
  background: #f28c28;
  color: #fff;
}
.btn.ghost {
  border: 2px solid #fff;
  color: #fff;
}

/* BANDS */
.band {
  padding: 4rem 1rem;
  text-align: center;
}
.band.light { background: #f6f8fb; }
.band.dark {
  background: #0b1a33;
  color: #fff;
}
.band h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* SERVICES */
.service-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.service {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.band.dark .service {
  background: #112a52;
  color: #fff;
}

/* FOOTER */
.site-footer {
  background: #0b1a33;
  color: #fff;
  padding: 3rem 1rem;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
/* ===== Regional Mission Band ===== */

.region-band {
  background:
    linear-gradient(
      rgba(11, 26, 51, 0.85),
      rgba(11, 26, 51, 0.85)
    ),
    url("../images/bayou.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.region-band .band-inner {
  max-width: 900px;
  margin: auto;
}

.region-band h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.region-band p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ===== Mission Band with Background Image ===== */

.mission-band {
  background:
    linear-gradient(
      rgba(11, 26, 51, 0.85),
      rgba(11, 26, 51, 0.9)
    ),
    url("../images/mission.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.mission-band .band-inner {
  max-width: 900px;
  margin: auto;
}

.mission-band h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.mission-band p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ===== Repeater Grid ===== */
.repeater-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.repeater-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

.repeater-card h3 {
  margin-top: 0.6rem;
  color: #1f4fd8;
}

/* Mode tags */
.mode-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  color: #fff;
}

.mode-tag.analog { background: #546e7a; }
.mode-tag.dmr    { background: #1e88e5; }
.mode-tag.p25    { background: #6a1b9a; }
.mode-tag.dstar  { background: #2e7d32; }

/* Guidelines list */
.guidelines {
  max-width: 700px;
  margin: auto;
  text-align: left;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .repeater-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .repeater-grid { grid-template-columns: 1fr; }
}

/* ===== Nets Page ===== */

.net-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.net-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.net-card h3 {
  margin-top: 0;
  color: #1f4fd8;
}

/* Responsive */
@media (max-width: 1000px) {
  .net-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .net-grid { grid-template-columns: 1fr; }
}

/* ===== Membership Page ===== */

.membership-grid {
  max-width: 800px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.membership-card {
  background: #112a52;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.membership-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #f28c28;
  margin: 0.5rem 0;
}

.note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.steps {
  max-width: 600px;
  margin: auto;
  font-size: 1.05rem;
}

@media (max-width: 600px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Officers Page ===== */

.officer-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.officer-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.officer-card h3 {
  color: #1f4fd8;
  margin-bottom: 0.3rem;
}

.officer-card .name {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.officer-card .role {
  font-size: 0.95rem;
  line-height: 1.6;
}

.appointment-grid {
  max-width: 800px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.appointment {
  background: rgba(255,255,255,0.12);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1000px) {
  .officer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .officer-grid {
    grid-template-columns: 1fr;
  }
  .appointment-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== VE Testing Page ===== */

.ve-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ve-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.ve-card h3 {
  margin-top: 0;
  color: #1f4fd8;
}

/* Responsive */
@media (max-width: 1000px) {
  .ve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ve-grid { grid-template-columns: 1fr; }
}

/* ===== Contact Page ===== */

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-card h3 {
  margin-top: 0;
  color: #1f4fd8;
}

.contact-card a {
  color: #1f4fd8;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Emergency Communications Band ===== */

.emergency-band {
  background:
    linear-gradient(
      rgba(11, 26, 51, 0.88),
      rgba(11, 26, 51, 0.92)
    ),
    url("../images/smalltown.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.emergency-band .band-inner {
  max-width: 900px;
  margin: auto;
}

.emergency-band h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.emergency-band p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ===== Membership Dues Band ===== */

.dues-band {
  background:
    linear-gradient(
      rgba(11, 26, 51, 0.9),
      rgba(11, 26, 51, 0.92)
    ),
    url("../images/swamp.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.dues-band .band-inner {
  max-width: 1000px;
  margin: auto;
}

.dues-band h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

/* Membership cards override for dark background */
.dues-band .membership-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  color: #fff;
}

.dues-band .membership-card .price {
  color: #f28c28;
}

.dues-band .note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

/* ===== 50 Years CTA Buttons ===== */

.cta-grid {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-grid .btn {
  min-width: 180px;
  text-align: center;
}


/* ===== Donation Page ===== */

.donation-grid {
  max-width: 900px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.donation-card {
  background: rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 600px) {
  .donation-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Donate Band ===== */

.donate-band {
  background:
    linear-gradient(
      rgba(11, 26, 51, 0.9),
      rgba(11, 26, 51, 0.92)
    ),
    url("../images/donate.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.donate-band .band-inner {
  max-width: 1000px;
  margin: auto;
}

.donate-band h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

/* Donation cards on dark background */
.donate-band .donation-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(3px);
  color: #fff;
}

.donate-band .donation-card a {
  color: #fff;
}

/* ===== Footer Social Button ===== */

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.social-btn svg {
  display: block;
}

.social-btn.facebook {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.social-btn.facebook:hover {
  background: rgba(255,255,255,0.2);
}

.footer-meta {
  font-size: 0.85rem;
  text-align: right;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}
