/* ================= NAVBAR ================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #16A34A;
}

/* Nav Links (Desktop default hidden for mobile-first) */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav-links a {
  margin-bottom: 15px;
  text-decoration: none;
  color: #4B5563;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover {
  color: #16A34A;
}

/* Show menu */
.nav-links.active {
  display: flex;
}

/* Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: #16A34A;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary:hover {
  background: #15803D;
}

/* Hamburger */
.menu-toggle {
  font-size: 22px;
  cursor: pointer;
  display: block;
}
.logo img{
height:40px;
object-fit:contain;
}

.logo a{
display:flex;
align-items:center;
text-decoration:none;
}
/* ================= TABLET & DESKTOP ================= */
@media (min-width: 768px) {

  .header {
    padding: 18px 60px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    padding: 0;
    box-shadow: none;
  }

  .nav-links a {
    margin-left: 25px;
    margin-bottom: 0;
  }
}