/* =========================
   RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

/* =========================
   GLOBAL LAYOUT
   ========================= */
.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* =========================
   COLORS
   ========================= */
:root {
    --blue: #1b4b7c;
    --blue-dark: #163b63;
    --blue-light: #e8f2ff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    width: 100%;
    height: 90px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar img {
    height: 70px;
    cursor: pointer;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.nav-login {
    padding: 10px 20px;
    background: var(--blue-dark);
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 32px;
    color: white;
    background: none;
    border: none;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--blue);
        padding: 20px 0;
    }
    .navbar-links.active {
        display: flex;
    }
}
