@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* LOGO */
.logo img {
    width: 150px;
}

/* NAV */
.navbar {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

/* LINKS */
.nav-links li {
    position: relative;
}

.nav-links li a {
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

/* HOVER */
.nav-links li a:hover {
    color: #326da5;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: max-content;
    list-style: none;
    border: 1px solid #ddd;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN ITEMS */
.dropdown-menu li a {
    font-family: "Roboto", sans-serif;

    padding: 10px 15px;
    font-size: 18px;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #326da5;
}

/* HAMBURGER */
.menu-toggle {
    font-family: "Roboto", sans-serif;

    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 960px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        border-top: 1px solid #ddd;
    }

    .navbar.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        padding: 12px 20px;
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .logo img {
        width: 100px;
    }

}

@media (max-width: 960px) {

.navbar {
    top: 92px;
}

}