/* =========================================
   NAVBAR — BOUCHAN'S STUDIO 2026
   ========================================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--black-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* LOGO */
.navbar .logo img {
  height: 70px;
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

/* LINKS DESKTOP */
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links li a {
  color: var(--white-pure);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

/* CTA */

.navbar .btn-cta:hover {
  background-color: var(--cyan);
  color: var(--black-deep);
  box-shadow: 0 0 18px var(--cyan);
}

.btn-cta {
  background-color: var(--magenta);
  color: var(--white-pure);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--electric-blue);
  transform: translateY(-2px);
}

/* LANGUAGE SWITCHER DESKTOP */
.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--cyan);
  background: transparent;
  color: var(--white-pure);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-btn:hover {
  background: var(--cyan);
  color: var(--black-deep);
}

.lang-btn.active {
  background: var(--yellow-neon);
  color: var(--black-deep);
  border-color: var(--yellow-neon);
  box-shadow: 0 0 8px var(--yellow-neon);
}

/* HAMBURGER (MOBILE) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--white-pure);
  border-radius: 4px;
  transition: 0.3s ease;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: var(--black-deep);
  padding: 80px 30px;
  transition: right 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu ul li a {
  color: var(--white-pure);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--cyan);
}

/* MOBILE LANG */
.mobile-lang {
  display: flex;
  gap: 12px;
}

.mobile-lang button {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--cyan);
  background: transparent;
  color: var(--white-pure);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-lang button:hover {
  background: var(--cyan);
  color: var(--black-deep);
}

/* SHOW MOBILE MENU */
.mobile-menu.active {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links,
  .btn-cta,
  .language-switcher {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
