body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #222;
  background-color: #f8f8f8;
}

header {
  background-color: #b30000;
  padding: 15px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: red;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.btn {
  background-color: white;
  color: #b30000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.mission {
  padding: 60px 20px;
  text-align: center;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}
/* --- Events Page --- */
.events {
  padding: 60px 20px;
  background-color: #fff;
}

.event-card {
  background: #f2f2f2;
  border-left: 5px solid #b30000;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 5px;
}

.event-card h3 {
  margin-top: 0;
  color: #b30000;
}

.event-card .date {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* --- Gallery Page --- */
.gallery {
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}
