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

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

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

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

.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;
}

/* Hero Banner */
.hero-banner {
  background-image: url("../img/bicmainphoto.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.4);
}

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

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

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

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

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

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

.event-card:hover {
  transform: translateY(-3px);
}

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

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

.social-icons img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}
@media (max-width: 480px) {
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}
