/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

@font-face {
  font-family: binggo;
  src: url(fonts/demo-binggo-wood-display.otf);
}

/* Navbar */
.navbar {
  background-color: #004d00;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 200px;
  transition: top 0.3s ease;
}

.logo img {
  height: 90px;
    transition: transform 0.3s ease;
}

.logo img:hover{
      transform: scale(1.1);
}
.nav-menu {
  display: flex;
  gap: 60px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.nav-menu a.active {
  background-color: #9fff00;
  color: #004d00;
  padding: 0px 20px;
  border-radius: 12px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active:hover {
  transform: scale(1.1);
}


/* Event Section */
.event-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  background-color: white;
height: 85vh;
  margin-top: 140px;
}

.event-left {
  flex: 1;
}

.event-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: -40px;
}

.event-right {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.event-right h2 {
  font-size: 3rem;
  color: #8B0000;
  margin-bottom: 20px;
  font-family: maragsa;
  position: relative;
  display: inline-block;
}

.event-right h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 4px;
  background-color: #362e00;
  border-radius: 2px;
}

.event-right p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  width: 600px;
  margin-left: 90px;
}
/* Footer */
.footer {
  background-color: #004d00;
  color: white;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 155px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-icons img {
  width: 70px;
  margin-left: 15px;
  cursor: pointer;
  margin-right: 60px;
}

.footer-icons img:hover {
  opacity: 0.8;
}

@font-face {
    font-family: maragsa;
    src: url(fonts/Maragsâ-Display.otf);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
