/* =============================================
   LFW Unified Header
   Used across all pages
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  height: 36px;
  width: 36px;
  border-radius: 8px;
}
.header-brand-name {
  font-size: 17px;
  font-weight: 800;
  color: #2E7D32;
  font-family: 'Inter', -apple-system, sans-serif;
  letter-spacing: -0.01em;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.header-nav a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 9px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.header-nav a:hover,
.header-nav a.active {
  color: #2E7D32;
  background: #f0fdf4;
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-lang {
  display: flex;
  gap: 3px;
}
.header-lang-btn {
  padding: 5px 11px;
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s;
  font-family: inherit;
}
.header-lang-btn.active {
  background: #2E7D32;
  color: white;
  border-color: #2E7D32;
}
.header-cta {
  background: #2E7D32;
  color: white !important;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-cta:hover {
  background: #256929;
}
.header-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #2E7D32;
  padding: 4px 6px;
  line-height: 1;
}

/* Mobile nav dropdown */
.header-mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid #e5e7eb;
  background: white;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.header-mobile-nav.open {
  display: flex;
}
.header-mobile-nav a {
  padding: 13px 20px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s;
}
.header-mobile-nav a:hover,
.header-mobile-nav a.active {
  color: #2E7D32;
}
.header-mobile-nav .mobile-cta {
  margin: 12px 20px 16px;
  background: #2E7D32;
  color: white !important;
  border-radius: 8px;
  text-align: center;
  border-bottom: none;
  font-weight: 600;
}
.header-mobile-nav .mobile-cta:hover {
  background: #256929;
}

@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .header-hamburger { display: block; }
}
@media (max-width: 480px) {
  .site-header-inner { padding: 0 14px; }
}
