/* 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; }

/* 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 – aligned with About page */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
  z-index: 2000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}
.side-nav.active {
  opacity: 1;
  visibility: visible;
}
.side-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #ab9150;
}

/* Nav layout */
.nav-top {
  width: 100%;
  text-align: center;
}
.nav-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.nav-bottom {
  width: 100%;
  text-align: center;
}

/* Logo inside nav */
.nav-logo {
  width: calc(100% - 40px);
  max-width: 480px;
  margin: 20px auto;
  height: auto;
}

/* Nav links */
.nav-middle a {
  display: block;
  padding: 20px 0;
  font-size: 2rem;
  font-weight: 400;
  color: #ab9150;
  text-align: center;
}
.nav-middle a:hover {
  color: #aaa;
}

/* Nav footer */
.nav-footer-text {
  font-size: .75rem;
  color: #ab9150;
  margin-top: 10px;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-logo {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  max-width: 80%;
  z-index: 1000;
}

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

/* 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; }
.footer-text { font-size: .75rem; color: #ab9150; }
