/* === Header === */
.siteHeader {
    background-color: #111;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #222;
}

header a {
  color: #111;
}

.headerFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  max-width: 60px;
}
.logo {
  width: 200px;
}

.menuToggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
}

.navLinks {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .navLinks a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  .nav-link-a:hover {
    color: var(--primary);
  }

.iconBtn {
    background-color: var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: .5em;
    margin: .0em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* font-size: 1.2rem; */
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .iconBtn:hover {
    background-color: #2c7c47;
    transform: scale(1.1);
  }
  
  /* === Responsive Nav & Grid === */
@media (max-width: 1000px) {
    .menuToggle {
      display: block;
    }
  
    .navLinks {
      flex-direction: column;
      position: absolute;
      /* top: 64px; */
      right: 0;
      background: #111;
      width: 220px;
      display: none;
      padding: 1.25rem;
      border-radius: 0 0 0 var(--radius);

    }
  
    .navLinks.show {
      display: flex;
    }
  
    .featuresGrid {
      grid-template-columns: 1fr;
    }
  
    .heroTitle {
      font-size: 2rem;
    }
  }

  /* Nav Dropdown */
.has-dropdown {
  position: relative;
}
.has-dropdown li {
  list-style: none;
}
.has-dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown li a {
  display: block;
  padding: 0.75em 1em;
  white-space: nowrap;
  color: #333;
  background: #fff;
}

.dropdown li a:hover {
  background: #f0f0f0;
}

.has-dropdown:hover .dropdown {
  display: block;
}

/* Mobile toggle support */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    box-shadow: none;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }
  
}
