/* Reset / Base */
body, ul, li, h1, p {
  margin: 0;
  padding: 0;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
body { font-family: Arial, sans-serif; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-weight: bold;
  font-size: 1.3rem;
  color: #2e6836; /* Change to brand color */
}

/* Navigation */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-item a {
  padding: 8px 10px;
  color: #333;
  transition: color 0.3s ease;
}
.nav-item a:hover,
.nav-item.current a {
  color: #2e6836; /* Highlight color */
  font-weight: normal;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #333;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.smallr {display: none;}

/* Responsive Styles */
@media (max-width: 768px) {
    
.bigr {display: none;}
.smallr {display: inline-block;}

  .menu-toggle { display: block; }
  .main-nav .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* adjust to header height */
    right: 0;
    background: #fff;
    width: 220px;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .main-nav .nav-list.open {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .logo {width: 90px; height: auto;}
}
