/* ============================================
   NAVBAR — Override & Redesign
   Logo 120px | Center menu | Right socials
   ============================================ */

:root { --nav-height: 100px; }

.navbar {
  height: 100px;
  padding: 0 40px;
}

/* Force grid — overrides style.css flex */
.nav-container {
  display: grid !important;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  width: 100%;
  gap: 0;
  justify-content: unset !important;
}

/* LEFT: Logo */
.nav-logo img {
  height: 120px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(201,168,76,0.35));
  transition: all 0.3s ease;
}
.nav-logo img:hover {
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.6));
  transform: scale(1.03);
}

/* CENTER: Links */
.nav-links {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  list-style: none;
  gap: 2px;
}

/* RIGHT: Socials + Lang */
.nav-right {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

/* Social icon buttons */
.nav-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--gray-light);
  flex-shrink: 0;
}
.nav-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}
.nav-social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

/* Divider between socials and lang */
.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(201,168,76,0.25);
  margin: 0 2px;
}

/* Lang toggle */
.nav-right .lang-toggle { margin-left: 2px; }

/* Hamburger: hidden desktop */
.hamburger { display: none !important; }
.nav-hamburger-wrap { display: none !important; }

/* Scrolled */
.navbar.scrolled {
  height: 76px;
}
.navbar.scrolled .nav-logo img { height: 68px !important; }
.navbar.scrolled .nav-container { grid-template-columns: 160px 1fr 220px; }

/* ---- TABLET ---- */
@media (max-width: 1100px) {
  .navbar { padding: 0 24px; }
  .nav-container { grid-template-columns: 180px 1fr 200px; }
  .nav-links a { padding: 8px 10px !important; font-size: 0.68rem !important; letter-spacing: 2px !important; }
  .nav-social-btn { width: 30px; height: 30px; }
  .nav-social-btn svg { width: 13px; height: 13px; }
}

/* ---- MOBILE ---- */
@media (max-width: 820px) {
  :root { --nav-height: 76px; }
  .navbar { height: 76px; padding: 0 20px; }
  .nav-container { grid-template-columns: 1fr auto !important; }
  .nav-links { display: none !important; }
  .nav-right { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-hamburger-wrap { display: flex !important; align-items: center; }
  .nav-logo img { height: 68px !important; }
}
