@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&display=swap');

@font-face {
    font-family: "Empera";
    src: url("https://db.onlinewebfonts.com/t/19d9a573a3e446f407b7bf444cbf8747.eot");
    src: url("https://db.onlinewebfonts.com/t/19d9a573a3e446f407b7bf444cbf8747.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/19d9a573a3e446f407b7bf444cbf8747.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/19d9a573a3e446f407b7bf444cbf8747.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/19d9a573a3e446f407b7bf444cbf8747.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/19d9a573a3e446f407b7bf444cbf8747.svg#Empera")format("svg");
}


html, body{
    height: 100%;
    margin: 0;
    padding:0;
}

body {
    font-family: "Oswald", Helvetica, sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

h1{
    font-family: "Empera", Helvetica, sans-serif;
}

h2, h3{
    font-family: "Bebas Neue", Helvetica, sans-serif;
    letter-spacing: 2px;
}

footer{
    width: 100%;
    background-color: #9E1B31;
    color: white;
    text-align: center;

    min-height: 75px;
}

footer p{
    margin-top: 5px;
    margin-bottom: 5px;
}

.socialMediaIcon{
    width:25px;
}

.homeLogo{
    display: block;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.pageContent{
    margin:0 25px;
    flex:1;
}

.eventSchedule{
    width:35%;
    margin-left: auto;
    margin-right: auto;
}

.eventSchedule h1{
    text-align: center;
}

.eventDivider{
    width:100%;
}

.menuPage{

}

.menuPage h1{
    margin-bottom: 0;
}

.embeddedMenu{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    min-height: 450px;
}

.topnav {
    overflow: hidden;
    background-color: #0B1E3A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.nav-section{
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left{
    justify-content: flex-start;
    font-family: "Empera", Helvetica, sans-serif;
}

.nav-center{
    justify-content: center;
}

.bookUs{
    display:flex;
    align-items: flex-start;
    gap: 10px;
}
.bannerStar{
    width: 25px;
    display: block;
}


.nav-right{
    justify-content: flex-end;
}

.topnav a {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 0 16px;
    text-decoration: none;
    height: 75px;
}


.topnav .icon {
    display: none;
}


@media screen and (max-width: 600px) {
    .topnav{
        display: flex;
    }
    .topnav div:not(:first-child) {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
    }

    .eventSchedule{
        width:100%;
    }

    .eventSchedule h1{
        text-align: left;
    }

    .homeLogo{
        width: 100%;
    }

    .embeddedMenu{
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
        display: block;
    }
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive div:first-child a{
        text-align: left;
    }
    .topnav.responsive div:nth-child(2) a div{
        justify-content: center;
    }
    .topnav.responsive .nav-section{
        float: none;
        display: block;
    }
}