/* ============================================================
   KAGEZI SEEDS — nav.css (Pill Design)
   ============================================================ */

nav {
  position: absolute; /* or fixed depending on site behavior, absolute to overlap hero */
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 5%;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--brand-lime, #d4ff33);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 255, 51, 0.3);
}
.nav-logo-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}

/* ── PILL LINKS ── */
.nav-pill-wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav-links a.active {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ── RIGHT ACCES ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  background: var(--white) !important;
  color: var(--green-deep) !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600 !important;
  font-size: 14px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nav-cta:hover { 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15); 
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { width: 28px; }
.nav-hamburger span:nth-child(2) { width: 20px; align-self: flex-start; }
.nav-hamburger span:nth-child(3) { width: 28px; }

/* ── MOBILE OVERLAY ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1005;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
}
.mobile-nav.open { transform: translateY(0); }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 26px;
  padding: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 32px 5%;
  gap: 24px;
}
.mobile-nav-links a {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--brand-lime); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .nav-pill-wrapper { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 500px) {
  .nav-logo-text { font-size: 18px; }
  .nav-cta { padding: 10px 18px; font-size: 13px; }
}
