* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


header {
  background-color: #1a1a1a;
  color: white;
  padding: 15px 0;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #f0a500;
}


.hero {
  background: linear-gradient(to bottom, #333, #222);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero span {
  color: #f0a500;
  font-weight: bold;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #f0a500;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #c58900;
}


.about {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
}

.about h2 {
  margin-bottom: 15px;
  font-size: 28px;
}


.activities {
  background-color: #eee;
  text-align: center;
  padding: 60px 20px;
}

.activity-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.activity-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
}

.activity-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}


.contact {
  text-align: center;
  padding: 50px 20px;
}

.contact a {
  color: #f0a500;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}


footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}
