/* === Global Styles === */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  color: #222;
}

header {
  background: #1c1e23;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  height: 40px;
}

nav a {
  color: #ddd;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #ffc107;
}

main {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Hero Section === */
.hero-header {
  background: url('assets/header.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem 2rem;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #ffc107;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e0a800;
}

.btn-secondary {
  background: #444;
  color: #fff;
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

/* === Features === */
.features {
  text-align: center;
  padding: 4rem 2rem;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.feature h3 {
  margin-top: 1rem;
  color: #444;
}

/* === Highlight Section === */
.highlight {
  background: #fff3cd;
  text-align: center;
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-top: 1px solid #f7e094;
  border-bottom: 1px solid #f7e094;
}

/* === Testimonials === */
.testimonials {
  background: #f0f0f0;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial blockquote {
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial cite {
  color: #666;
  font-size: 0.9rem;
}

/* === Call to Action === */
.join-call {
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.join-call h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* === Footer === */
footer {
  background: #1c1e23;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* === Activities Layout === */
#activityContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.activity-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* === Filter Controls === */
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.filter-controls label {
  font-weight: bold;
  margin-right: 0.5rem;
}

/* === Calendar Section === */
.calendar-section {
  background: #ffffff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
