:root {
  --bg: #000;
  --ink: #fff;
  --gray: #888;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #333;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-logo {
  width: 48px;
  height: 48px;
}

.club-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  display: none;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gray);
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 700;
}

.hero p {
  max-width: 600px;
  margin: 10px auto;
  color: var(--gray);
}

/* CONTENT SECTIONS */
.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

#searchBar {
  width: 100%;
  padding: 10px;
  margin: 15px 0 25px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #111;
  color: #fff;
}

.bylaw {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.bylaw:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  border-top: 1px solid #333;
}

footer a {
  color: #ccc;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #000;
    padding: 10px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .club-logo {
    width: 40px;
    height: 40px;
  }
}
