@import url("global_vars.css");
@import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap');

:root {
    --circle-size: 15vh;
}
@media screen and ( max-width: 820px ) {
    #mainNav{
        display: none !important;
    }
    #logoCircle {
        margin-top:-10 !important;
    }
}

@media screen and ( min-width: 821px ) {
    #burgerNav{
        display: none !important;
    }
    #logoCircle {
    }

}




/*Full #mainNav options*/
#mainNav {
    z-index: 999;
    position: fixed;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: calc(var(--header-height) + 4vh);
    transition: all 0.5s ease-in-out;
}



/* Logo */
#logoCircle {
    height: var(--circle-size);
    width: var(--circle-size);
    position: absolute;
    margin-top: -1vh;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    background:transparent; 
  }




.color-change{
    background: #ff6e6e !important;
}

.height_change{
    height: var(--header-height) !important;
}

.logo {
    width: calc(var(--circle-size) - 1.5vh);
}

/* Menu Text and overall styling */
.top-left-bar, .top-right-bar {
    margin-top: calc(var(--header-height) / 2);
    padding: 0px;
    list-style-type: none;
    display: flex;
    font-family: "Heebo", Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.5vw;
    
}

.top-left-bar li, .top-right-bar li{
    position: relative;
}
.top-left-bar li a, .top-right-bar li a{
    padding: 0rem 0.5vw;
    color:white;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
}


.text-color-header.top-left-bar li a, .text-color-header.top-right-bar li a{
    color:black !important;
}

.top-left-bar li a:hover, .top-right-bar li a:hover{

    color: #EC7D76;
}

#mainNav .menu-container-left{
    float: right;
    margin-right: calc(calc(50% + calc(var(--circle-size) / 2)) + 1vw);
}

#mainNav .menu-container-right{
    position: absolute;
    margin-left: calc(calc(50% + calc(var(--circle-size) / 2)) + 1vw);
}



/* #mainNav before Animation */
 #mainNav .red-dot {

    background-color: red !important;
  } 
/* #mainNav after Animation */




/* Burger Menu Button CSS */
#burgerNav{
    position: fixed;
    width:100%;
    display: block;
    z-index:999;

}

.burger_container {
    position: fixed;
    float: right;
    display: flex;
    z-index: 999;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    right: 20px;
    width: 80px;
    height:80px;
    cursor: pointer;
    transition: all .5 ease-in-out;
    /* border:3px solid #fff */
}

.btn_burger{
    width: 50px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px #CD5C5C;
    transition: all .5s ease-in-out;
}
.btn_burger::before,
.btn_burger::after {
    content:"";
    position: absolute;
    width: 50px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px #CD5C5C;
    transition: all .5s ease-in-out;
}

.btn_burger::before {
    transform: translateY(-16px);
}

.btn_burger::after {
    transform: translateY(16px);
}

/* Animation */

.burger_container.open .btn_burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.burger_container.open .btn_burger::before{
    transform: rotate(45deg) translate(35px, -35px);
}

.burger_container.open .btn_burger::after{
    transform: rotate(-45deg) translate(35px, 35px);
}

/* Burger Menu Dropdown CSS */
.mobile-bar {
    position: fixed;
    display: inline-block;
    margin-top: 100px;
    margin-right:-5px;
    list-style-type: none;
    background: #222;
    font-family: "Heebo", Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px;
    right: 0px;
    border-radius: 5px 0 0 10px;
    box-shadow: -7px 7px 0px 3px #CD5C5C;
    padding: 20px 40px 20px 20px;
    transition: all .5s ease-in-out;
    transform: translateX(300px);
}

.mobile-bar ul {
    display: none;
	position: absolute;
    top: 80%;
    left: 0px;
    padding-left: 15px;
    background: #222;
}

.mobile-bar li {
    display: block;
    float: none;
}

.mobile-bar li a{
    display: block;
    float: none;
    text-decoration: none;
    color: #fff;
}


.mobile-bar li a:hover{
    color: #CD5C5C;
}


/* Animation slide in */

.mobile-bar.slide{
    transform: none;
}

