/* =========================================================
   4. Navigation
   ========================================================= */

.logo {
  width: auto;
  height: 115px !important;
  max-width: none !important;
  object-fit: contain;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  padding: 10px 30px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.navbar-nav {
  padding-left: 10px;
}

.navbar a {
  margin: 0 12px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.navbar a:hover,
.navbar a.active {
  color: var(--gold);
}

.nav-link {
  color: var(--text-soft) !important;
  font-weight: 500;
}

.nav-link:hover,
.active-link {
  color: var(--gold) !important;
}

.active-link {
  font-weight: 700;
}

.navbar > .container {
  justify-content: center;
  max-width: 900px;
}

/* =========================================================
   5. Language Switcher
   ========================================================= */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.language-switcher a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.language-switcher a:hover {
  color: var(--gold);
}
/* =========================================================
   Mobile Navigation Refinements
   ========================================================= */
/*
@media (max-width: 768px) {
  .navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .navbar-brand {
    margin: 0;
  }

  .logo {
    max-width: 70px;
    height: auto;
  }

  .language-switcher {
    justify-content: center;
    gap: 12px;
  }

  .language-switcher a {
    min-width: 34px;
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px;
  }

  .navbar-collapse {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  .navbar-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }

  .navbar-nav .nav-link {
    padding: 8px 0;
    font-size: 0.96rem;
  }
}
*/
