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

body {
  background: black;
  color: #ab9150;
  font-family: "Times New Roman", Times, serif;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* =========================
   Hamburger Menu
========================= */
.menu {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu .bar {
  width: 28px;
  height: 3px;
  background: #ab9150;
  border-radius: 2px;
}

/* =========================
   Side Navigation Overlay (MATCH ABOUT.CSS BEHAVIOR)
========================= */
.side-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: black;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 2000;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* Key: avoids flex reflow “jump” */
  justify-content: flex-start;

  /* Consistent top/bottom spacing */
  padding-top: 60px;
  padding-bottom: 80px;
}

.side-nav.active {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.side-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  text-decoration: none;
  color: #ab9150;
  z-index: 2100;
}

/* Nav sections */
.nav-top,
.nav-middle,
.nav-bottom {
  width: 100%;
  text-align: center;
}

/* Top Logo Area: fixed height so it never shifts */
.nav-top {
  height: 110px; /* same logic as About */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo inside nav: LOCK SIZE (no shrinking) */
.nav-logo {
  width: 300px;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0;
}

/* Middle menu centered in remaining space */
.nav-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-middle a {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 2rem;
  font-weight: 400;
  color: #ab9150;
}

.nav-middle a:hover {
  color: #aaa;
}

/* Bottom */
.nav-bottom { text-align: center; }

.nav-footer-text {
  font-size: 0.75rem;
  color: #ab9150;
  margin-top: 10px;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Desktop Hero Image */
  background-image: url("DESKTOP-HERO-IMAGE-BAFC-wwsc-1.jpg");
}

.hero-logo {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  max-width: 80%;
  z-index: 1000;
}

/* Mobile Hero Image */
@media (max-width: 768px) {
  .hero {
    background-image: url("MOBILE-HERO-IMAGE-BAFC-wwsc-1.jpg");
  }
}

/* =========================
   Clubs Content
========================= */
.clubs-content {
  padding: 80px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: black;
}

/* Headings & Text */
.clubs-hero h1 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}

.clubs-hero h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ab9150;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clubs-hero h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ab9150;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clubs-hero p {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
  text-align: justify;
}

/* Supporting Sections */
.supporting h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ab9150;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.supporting p {
  font-size: 16px;
  color: #ab9150;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.kit-section { margin-top: 40px; }

/* =========================
   Images
========================= */
.images-block {
  margin: 40px auto;
  text-align: center;
}

.sub-image {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  display: block;
  height: auto;
  object-fit: cover;
}

.caption {
  font-size: 14px;
  color: #ab9150;
  margin-top: 8px;
  text-align: center;
}

/* =========================
   Footer
========================= */
.page-footer {
  text-align: center;
  margin-top: 60px;
}

.footer-logo {
  width: 260px;
  margin-bottom: 10px;
  height: auto;
}

.footer-text {
  font-size: 0.75rem;
  color: #ab9150;
}

/* =========================
   Responsive tweaks
========================= */
@media (max-width: 480px) {
  /* keep nav logo bold on small screens */
  .nav-logo {
    width: 240px;
    max-width: 240px;
  }

  .nav-middle a {
    font-size: 1.8rem;
  }
}
