/* ==========================
   HEADER STYLES
   ========================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.6rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 1400px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 42px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropbtn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin-top: 0.25rem;
  z-index: 10;
}
.dropdown-content a {
  display: block;
  padding: 0.6rem 1rem;
  color: #222;
  text-decoration: none;
}
.dropdown-content a:hover {
  background: #f5f5f5;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Buttons */
.header-actions {
  display: flex;
  gap: 0.8rem;
}
/* .btn {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.2s ease;
}
.btn-primary {
  background: #20a2a8;
  color: #fff;
}
.btn-primary:hover {
  background: #17868a;
}
.btn-outline {
  background: #20a2a8;
  color: #fff;
}
.btn-outline:hover {
  background: #17868a;
} */

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 64px;
    right: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
  }
  .main-nav.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}
