* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #111;
  color: white;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  border-bottom: 2px solid #e63946;
}

.nav-btn {
  padding: 0.5rem 1rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.nav-btn:hover {
  background-color: #e63946;
  color: white;
}

/* Hero Banner */
.hero-banner {
  background-image: url("../img/fhmainphoto.png");
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-banner p {
  font-size: 1.5rem;
  font-weight: 300;
}

/* Content Sections */
.about,
.events,
.map {
  padding: 2rem;
  text-align: center;
}

.about h2,
.events h2,
.map h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e63946;
}

/* Events Section */
.events {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Event Card */
.event-card {
  color: #000;
  width: 90%;
  max-width: 600px;
  padding: 1.5rem;
  background-color: #fff;
  border-left: 5px solid #e63946;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: scale(1.02);
}

/* Footer */
.footer-link {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
}

.footer-link:hover {
  color: #e63946;
  text-decoration: underline;
}
