/* === MeriLuma global header === */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 50;
  transition: box-shadow 0.2s ease;
}

.site-header.shadow {
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.site-header .max-w-6xl {
  max-width: 72rem;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-symbol {
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #d9b06b, #f2e7c9 35%, #e2c37a 60%, #f8f1dc);
  -webkit-background-clip: text;
  color: transparent;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
}

/* Nav */
.nav-links {
  display: none;
  gap: 24px;
  font-size: 0.95rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #f7a07a;
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #f7a07a;
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
}

/* Mobilmeny åpen */
.nav-links.open {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.nav-links.open a {
  display: block;
  padding: 10px;
  margin: 0;
}

/* Desktop */
@media (min-width: 640px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}
