@charset "UTF-8";
/* Navbar CSS */
#nav-bar {
	will-change: top, opacity;
    position: fixed;
    list-style-type: none;
    padding: 0 20px;
    overflow: hidden;
    background-color: white;
    height: 80px;
    width: 50%;
	min-width: 635px;
	margin-top: 10px;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.7);
    top: 0;
	left: 50%;
    transform: translate(-50%, 0);
	opacity: 1;
}
#nav-screen {
	will-change: bottom;
	position: fixed;
	z-index: 1000;
	list-style-type: none;
	text-align: center;
	left: 50%;
	bottom: -500px;
	width: 95%;
	transform: translate(-50%, 0);
	transition: bottom 0.25s;
}
#nav-bar img {
    padding: 8px 10px 0 15px;
    height: 68px;
    transition: filter 0.4s;
}
#nav-bar img:hover {
    filter: brightness(0);
}
#nav-bar li {
    float: right;
    height: 80px;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
#nav-bar li a {
    display: block;
    text-align: center;
    padding: 35px 8px;
    text-decoration: none;
    font-family: var(--body-text);
    transition: color 0.3s;
    color: black;
	font-size: var(--nav-fsize);
}
#nav-bar li a:hover {
    color: var(--pal-green);
}
#nav-mobile {
    display: none;
}
@media screen and (max-width: 680px) {
    #nav-bar {
        display: none;
    }
    #mobile-logo {
        position: relative;
        max-height: 70px;
        left: 0px;
        float: left;
        top: -15px;
        z-index: 5;
        transition: filter 0.3s;
    }
    #mobile-logo:hover {
        filter: brightness(0);
    }
    #hamburger {
        align-content: right;
        float: right;
        position: relative;
		height: 60px;
        right: 0;
        top: -15px;
        z-index: 1001;
        transition: filter 0.3s;
    }
    #hamburger:hover {
        filter: brightness(0);
    }
    #nav-mobile {
        position: fixed;
        top: -265px;
        transition: top 0.3s;
        left: 50%;
        /*max-width: calc(100% - 10px);
        min-width: calc(90% - 10px);*/
		width: calc(100% - 10px);
		transform: translate(-50%, 0);
        display: block;
        z-index: 100;
        background: white;
        border-radius: 15px;
        box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.7);
    }
    #nav-mobile li {
        text-align: center;
        text-decoration: none;
        list-style: none;
        font-family: var(--body-text);
        font-size: 1.5em;
        font-style: (--body-style);
        padding: 20px;
        cursor: pointer;
    }
    #nav-mobile li a {
        text-decoration: none;
        color: var(--pal-green);
    }
    #nav-mobile-blinds {
        transition: opacity 0.3s;
        background: black;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        pointer-events: none;
    }
}
