@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

body {
  font-family: 'Roboto Condensed', sans-serif;
  color: #2E4F37;
  background-color: white;
  margin: 0;
  padding: 0;
}

/* Navbar wrapper */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  z-index: 50;
  height: 5rem; /* 80px */
}

nav a {
  position: relative;
  text-decoration: none;
  color: #2E4F37;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #2E4F37;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Spacer to prevent content under navbar */
.nav-spacer {
  height: 5rem; /* 80px */
}

/* Navbar inner layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 5rem; /* 80px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo image (you've set this to 80px) */
.logo img {
  height: 80px;
  width: auto;
}

/* Nav link styles */
#menu a {
  position: relative;
  text-decoration: none;
  color: #2E4F37;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
}

/* Underline effect */
#menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #2E4F37;
  transition: width 0.3s ease;
}

#menu a:hover::after {
  width: 100%;
}

/* Optional spacing for mobile stacked links */
@media (max-width: 768px) {
  #menu a {
    padding: 0.5rem 0;
  }
}