/* Header Styles */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  color: var(--remedy-teal);
}

.logo img {
  height: 52px;
  display: block;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a:not(.btn-contact) {
  color: #111111;
  transition: color 0.3s ease;
}

.nav-desktop a:not(.btn-contact):hover {
  color: var(--remedy-teal);
}

header.scrolled .nav-desktop a:not(.btn-contact) {
  color: #111111;
}

.btn-contact {
  background: var(--remedy-green);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.btn-contact svg {
  stroke: white;
  margin-right: 6px;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 122, 0, 0.3);
}

.menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.nav-mobile a:not(.btn-contact) {
  color: #111111;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}