/* ===============================
   2. NAVBAR & NAVIGATION
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: linear-gradient(90deg, #0b2a4a, #004fa3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nav-top {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-top-container {
    display: grid;
    grid-template-columns: auto 1fr auto;  /* 👈 KEY */
    align-items: center;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Logo spacing FIX */
.logo {
    display: flex;
    align-items: center;
	margin-right: 30px;
}

.logo img {
    height: 135px;
}

/* ===============================
   MAIN NAV (CENTERED + LOCKED)
================================ */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;  /* 👈 centers it in middle column */
    gap: 32px;
}

/* Top-level nav */
.nav-menu a,
.nav-menu .dropdown>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;

    color: #ffffff;
    background: transparent;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu .dropdown > a:hover {
    color: #f15d22;
}

.info-item {
    color: #ffffff;
}

.info-item a {
    color: #ffffff;
    text-decoration: none;
}

.info-item a:hover {
    color: #f15d22;
}

/* Active page – NO box */
.nav-menu a.active {
    color: #000000;
    background: transparent;
}

/* ===============================
   DROPDOWN (LOCKED TYPOGRAPHY)
================================ */

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    margin-top: 12px;

    background: #004fa3;
    min-width: 260px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 14px 18px;

    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;

    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
}

.nav-menu .dropdown-menu a+a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.info-item {
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.5px;
  justify-self: end;
}

body.menu-open {
  overflow: hidden;
}

/* Hamburger container */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 3000;
}

/* Hamburger lines container */
.menu-toggle .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

/* Lines */
.menu-toggle .hamburger span {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    display: block;
}

/* Label */
.menu-label {
    display: none;
	color: #ffffff;
}

@media (max-width: 900px) {
    .menu-label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
}

.info-item {
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.5px;
  justify-self: end;
}

body.menu-open {
  overflow: hidden;
}

.no-link {
    pointer-events: auto;
}
