#burger-menu,
#hero-section-logo {
    display: none
}

#burger-menu,
#header-logo,
#header-title {
    cursor: pointer
}

:root {
    --accent-color: #063247;
    --light-grey: #404040;
    --dark-grey: #16161d
}

header {
    height: 110px;
    width: 100vw;
    background-color: var(--accent-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: top 350ms ease-out
}

#hero-section {
    height: 32.407vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center
}

#hero-section-heading {
    text-align: center
}

#header-title {
    justify-self: center;
    align-self: center
}

@media only screen and (max-width:1260px) {
    #header-title {
        width: 250px
    }
}

#header-logo {
    justify-self: start;
    margin-left: 6.25vw;
    align-self: center
}

@media only screen and (max-width:1260px) {
    #header-logo {
        margin-left: 5vw;
        height: clamp(60px, 25vw, 80px)
    }
}

@media only screen and (max-width:760px) {
    #header-title {
        width: 220px
    }

    #header-logo {
        margin-left: 0;
        justify-self: center;
        height: clamp(60px, 11vw, 70px)
    }
}

@media only screen and (max-width:660px) {
    #hero-section {
        background-image: none !important;
        background-color: #fff !important;
        background-position: center !important
    }

    #hero-section-logo {
        display: initial;
        height: 100px;
        margin-bottom: 20px
    }

    header {
        grid-template-columns: 1fr 4fr 1fr
    }

    #header-logo {
        height: 30px;
        opacity: 0
    }
}

#header-nav {
    justify-self: center;
    height: 70%;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
    color: #fff
}

.nav-links:visited,
a:visited {
    color: #fff
}

#burger-menu {
    padding-inline-end: 30px
}

@media only screen and (max-width:900px) {
    #header-nav {
        height: inherit;
        justify-self: end
    }

    #header-nav>a {
        display: none
    }

    #burger-menu {
        display: initial;
        justify-self: end;
        height: 28px
    }
}

.nav-links {
    display: inline-block;
    position: relative
}

.nav-links:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform .35s ease-out
}

.nav-links:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left
}

.nav-links:link {
    color: #fff;
    text-decoration: none;
    font-family: Cinzel, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .080em
}

@media only screen and (max-width:1260px) {
    #header-nav {
        column-gap: 5px
    }

    .nav-links:link {
        font-size: 13.8px
    }
}