/* NAV BAR */


@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');


#wrapper .navbar .logo-container h1 {
    color: white;
    font-family: 'Lora';
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}



#wrapper .navbar #nav-list .menu-item a {
    color: white;
    text-decoration: none;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
    font-family: 'Lora';
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: capitalize;
}

#wrapper .navbar #nav-list .menu-item a:hover {
    text-decoration: underline;
    padding-bottom: 5px;
}

.navbar {
	/* make it stick */
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	/* in front of all other elements */
	z-index: 99;
	/* set background */
    background: rgb(70,12,246);
    background: linear-gradient(to right, rgba(0,0,102,1) 0%, rgba(153,0,204,1) 50%, rgba(0,0,102,1) 100%); 
	padding: 10px 5%;
	/* define flex */
	display: flex;
	justify-content: space-between;
	align-items: center;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}







.logo-image {
    display: block;
    height: 48px
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
}

.menu-item {
	display: inline-block;
	margin-left: 10px;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: white;
    margin: 4px auto;
}

.menu-icon {
    display: none;
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar {
        flex-direction: column;
    }

    .logo-container {
        width: 100%;
    }

    .menu-item {
        display: block;
        width: 100%;
        padding: 5px 0;
        text-align: left;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 5%;
    }

    .menu-icon:hover .bar {
    background-color: #D5D5D5;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }
    
    .active {
        display: block;
    }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar {
		flex-direction: column;
    }

    .logo-container {
        width: 100%;
    }

    .menu-item {
        display: block;
        width: 100%;
        padding: 5px 0;
        text-align: left;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 5%;
    }

    .menu-icon:hover .bar {
    background-color: #D5D5D5;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }
    
    .active {
        display: block;
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
 .navbar {
		flex-direction: column;
    }

    .logo-container {
        width: 100%;
    }

    .menu-item {
        display: block;
        width: 100%;
        padding: 5px 0;
        text-align: left;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 5%;
    }

    .menu-icon:hover .bar {
        background-color: #D5D5D5;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }
    
    .active {
        display: block;
    }
}
