/* ---------- HEADER (TRANSPARENT BACKGROUND) ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: transparent;
    backdrop-filter: none;
    transition: var(--transition-normal);
    padding: 0;

}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    animation: slideDown var(--transition-normal);
}

.navbar-scrolled .nav-links a {
    color: #ffffff;
}

.navbar-scrolled .logo-text {
    color: var(--color-primary);
}

.navbar-scrolled .logo {
    background: #ffffff;
    padding: 0 1rem;
}

.nav-container {
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-row {
    width: 100%;
    min-height: 85px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    position: relative;
    background: transparent;
}

.desktop-nav-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    column-gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    justify-self: center;
    background: transparent;
    min-height: 85px;
    padding: 0;
    transition: var(--transition-normal);
}

.logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(var(--shadow-sm));
    transition: transform var(--transition-fast);
    margin: 0;
    padding: 0;
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

.logo-text {
    display: none;
}

/* navigation links - USING BEBAS NEUE FONT */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 1rem;
}

.nav-left,
.nav-right {
    min-height: 85px;
    border-top: none;
    width: 100%;
    padding: 0 1.5rem;
    background: #00b3ca;

    box-shadow: none;
    position: relative;
    top: 0;
}

.nav-left {
    border-radius: 0 0 18px 0px;
}

.nav-right {
    border-radius: 0 0 0px 18px;
}


.nav-left::before,
.nav-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 4px;
    background: #00b3ca;
}

.nav-left {
    justify-self: stretch;
}

.nav-right {
    justify-self: stretch;
}

.mobile-nav-links {
    display: none;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-nav);
    font-weight: var(--font-weight-regular);
    letter-spacing: 1px;
    color: #ffffff;
    transition: var(--transition-fast);
    font-size: 1.1rem;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: transparent;
    transition: var(--transition-fast);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: #e9fdff;
}

.hamburger {
    display: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: #00b3ca;
    background: transparent;
    border: none;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1.1rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}




/* Active page indicator - underline for current page */
.nav-links a.active-page {
    color: #e9fdff;
    position: relative;
}

.nav-links a.active-page:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #84cc16;
    border-radius: 2px;
}

/* For navbar-scrolled state */
.navbar-scrolled .nav-links a.active-page {
    color: #84cc16;
}

.navbar-scrolled .nav-links a.active-page:after {
    background: #84cc16;
}

/* Mobile nav active state */
.mobile-nav-links a.active-page {
    color: #00b3ca;
}

.mobile-nav-links a.active-page:after {
    background: #03b9c8;
}