@import url('../fonts/poppins.css');
@import url('./sections/navbar.css');
@import url('./sections/menu.css');
@import url('./sections/footer.css');

:root {
    --font-base: "Poppins", sans-serif;
    --font-base-bold: "Poppins-Bold", sans-serif;
    --font-base-medium: "Poppins-Medium", sans-serif;

    --primary-color: #3a6ac4;
    --secondary-color: #eef0ff;
    --emphasis-color: #00063d;

    --black-200: #020202;
    --black-300: #111111;
    --black-400: #2c2c2c;
    --black-500: #555555;

    --gray-100: #888888;
    --gray-200: #ccc;

    --color-white: #fff;
}

/* RESET DEFAULT STYLES */
* {
    margin: 0px;
}

html {
    height: 100%;
}


a {
    text-decoration: none;
    color: #1f1e31;
}

ul {
    list-style: none;
}

body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;

    display: flex;
    flex-direction: column;

    min-height: 100%;

    overflow-y: scroll;
    pointer-events: all;

    font-family: var(--font-base);
}

h1,
h2 {
    font-family: var(--font-base-bold);
}

h3,
h4 {
    font-family: var(--font-base-medium);
}

a, p {
    font-family: var(--font-base);
}

hr {
    margin-left: 0;
    margin-right: 0;
    border: 0;
    height: 1px;
    background: #ccc;
}

/* Utility Classes */
.muted {
    font-size: 14px;
    color: #5d5f60;
    user-select: none;
}

.muted:is(:hover, :active, :focus) {
    color: #0f2336;
    cursor: pointer;
}

.no-scroll {
    overflow: hidden;
    pointer-events: none;
}




@media screen and (min-width: 1000px) {
    header {
        margin: 30px 0px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav {
        display: flex;
        align-items: center;
        width: min(80vw, 1100px);
        border-radius: 40px;
    }

    .navbar-elements__container--contracted {
        display: none;
    }

    .navbar-elements__container--expanded {
        display: flex;
        height: 100%;
        align-items: center;
        position: relative;
    }

    .navbar__elements--expanded {
        display: flex;
        align-items: center;
        position: relative;
        justify-content: flex-end;
        gap: 30px;
        height: 100%;
    }

    .navbar__elements--expanded > li {
        display: flex;
        align-items: center;
    }

    .navbar__logo > a > img {
        margin-left: 20px;
    }

    .deptartments-element {
        display: flex;
        left: 0;
        top: 0;
        flex-direction: column;
        position: relative;
    }

    .deptartments-element__link {
        display: flex;
        align-items: center;
    }

    .deptartments-element__link > svg {
        fill: var(--gray-100);
        height: 15px;
        width: 15px;
    }

    .dropdown-container {
        padding-top: 30px;
        position: absolute;
        margin-top: 20px;

    }
    
    .departments__elements{
        display: none;
        opacity: 0;

        transition: 1s;
    }

    .deptartments-element:is(:hover, :active, :focus) .departments__elements {
        display: flex;
        opacity: 1;
    }

    .nav_user {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .navbar__user-icon--inactive {
        height: 40px;
        width: 40px;
    }

    .navbar__user-icon--active {
        height: 40px;
        width: 40px;
    }
}