/* ── Üst iletişim bandı ── */
.site-topbar {
  background: #14532D;
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.5;
}
.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-topbar a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.site-topbar a:hover { color: #C9A84C; }
.topbar-sep { color: rgba(255,255,255,0.3); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { font-weight: 600; letter-spacing: 0.06em; font-size: 10px; }
.site-topbar svg { width: 15px; height: 15px; }
@media (max-width: 479px) {
  .topbar-contact { display: none; }
  .topbar-inner { justify-content: flex-end; }
}

/* ── Light-variant navbar: topbar kadar aşağı kaydır ── */
.navbar-section:where(.w-variant-abd5403c-bf30-5f75-bd13-ae61feedf3e2) {
  top: 30px !important;
}

/* ════════════════════════════════════════════════
   NAVİGASYON OVERRIDELARİ (tüm navbar tipleri)
   ════════════════════════════════════════════════ */

/* 1 — Navbar arka plan: neredeyse beyaz krem + çok ince gölge */
.hero-navbar-section,
.navbar-section {
  background-color: #FDFEFC !important;
  box-shadow: 0 2px 12px rgba(20,83,45,0.06) !important;
}

/* 2 — Nav linkleri: koyu yeşil, hover/aktif altın */
.navlink,
.hero-navbar-section .w-nav-link,
.navbar-section .w-nav-link {
  color: #14532D !important;
}
.navlink:hover,
.navlink.w--current,
.hero-navbar-section .w-nav-link:hover,
.hero-navbar-section .w-nav-link.w--current,
.navbar-section .w-nav-link:hover,
.navbar-section .w-nav-link.w--current {
  color: #C9A84C !important;
}

/* 3 — Navbar butonu gizli (tüm sayfalarda kaldırıldı) */
.primary-button { display: none !important; }

/* 4 — Logo: harmas-logo.png, 50px yükseklik */
/* İkinci logo (svg) gizle */
img.logo-light { display: none !important; }

/* Ana logo img'i harmas-logo.png ile değiştir (Blink tabanlı tarayıcılarda çalışır) */
img.logo,
.inner-navbar-brand > img:first-child,
.navbar-brand > img {
  content: url('../images/harmas-logo.png') !important;
  height: 120px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  display: block !important;
  background: transparent !important;
  object-fit: contain !important;
}

/* Sarmalayıcı kısıtlamalarını kaldır */
.inner-navbar-brand,
.navbar-brand {
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

/* Navbar dikey hizalama */
.hero-navbar-section .navbar-div,
.navbar-section .navbar-div {
  min-height: 130px !important;
  display: flex !important;
  align-items: center !important;
}

/* 5 — Hamburger çizgileri koyu yeşil (mobil) */
.menu-line {
  background-color: #14532D !important;
}

/* 6 — Nohut sayfaları: hero yüksekliği azalt */
.service-top-content { height: 240px !important; }

/* 7 — Nohut açıklama + görsel yan yana düzeni */
.nohut-desc-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 52px;
}
.nohut-desc-img img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #fff;
}
.nohut-description,
.nohut-detail-desc { margin-bottom: 0 !important; }
@media (max-width: 700px) {
  .nohut-desc-layout { grid-template-columns: 1fr; }
}
