/* ─── RESET & VARS ─────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --lime:     #c4e024;
  --lime-dim: rgba(196,224,36,0.12);
  --dark:     #1a1d22;
  --dark2:    #1e2127;
  --dark3:    #23262d;
  --border:   rgba(255,255,255,0.07);
  --muted:    rgba(255,255,255,0.62);
  --body:     rgba(255,255,255,0.88);
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--body);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── LANGUAGE TOGGLE ─────────────────────────────────── */
.lang-btn {
  display: flex; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: transparent;
}
.lang-btn button {
  background: none; border: none; cursor: pointer;
  padding: 5px 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.lang-btn button.active {
  background: var(--lime);
  color: var(--dark);
}

/* ─── HAMBURGER & MOBILE MENU ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 16px 5vw 28px;
  z-index: 99;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-links { list-style: none; margin-bottom: 20px; }
.mobile-menu-links li { border-bottom: 1px solid var(--border); }
.mobile-menu-links a {
  display: block;
  padding: 14px 0;
  color: var(--body);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active { color: var(--lime); }
.mobile-menu-cta {
  display: block;
  padding: 14px;
  background: var(--lime);
  color: var(--dark);
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

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