/* 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);
}


/* 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);
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  height: 150vh;
  padding: 60px 20px;
  gap: 40px;
  margin-top: 199px;
}


.contact-map {
  flex: 1;
  height: 1900px;
}

.contact-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f9f9f9;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004d00;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  margin-bottom: 15px;
  border: 2px solid #004d00;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #004d00;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #003300;
}
/* 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);
}

/* 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);
}
