body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #FDEFA2;
  color: #222;
}

header {
  background: #6781BE;
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  position: relative;
}
.club-name {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #FDEFA2;
}
.menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #6781BE;
    flex-direction: column;
    width: 200px;
    gap: 1.5rem;
    padding: 1.5rem 0;
    display: none;
  }
  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
.hero {
  text-align: center;
  padding: 4rem 2rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #6781BE;
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
}
