/* ===== GLOBAL RESET ===== */
html, body {
    margin: 0;
    padding: 0;
}

.site-header {
    height: 90px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	background: linear-gradient(90deg, #0b1d4d, #123b8a);
	font-family:'Segoe UI',sans-serif;
}

/* ===== LOGO ===== */
.header-left {
    height: 100%;
    display: flex;
    align-items: stretch;   /* 🔑 important */
}

.logo-box {
    height: 100%;
    aspect-ratio: auto;   /* let logo decide width */
    display: flex;
    align-items: center;
}

.logo-box img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ===== NAV ===== */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;

    /* ⬆️ Bigger + bolder for balance */
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;

    position: relative;
    padding-bottom: 6px;
    transition: 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #ffcc00;
    transition: 0.25s ease;
}

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

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

/* ===== USER ===== */
.user-box {
    font-size: 17px;
    font-weight: 500;
    color: #e6ecff;
    white-space: nowrap;
}

.user-box a {
    color: #e6ecff;
    margin-left: 8px;
    text-decoration: none;
    font-weight: 600;
}

.user-box a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}