@import url('https://fonts.googleapis.com/css?family=Roboto|Futura|Raleway|Oswald|Lato|Montserrat');
@import url('https://fonts.googleapis.com/css?family=Iceland');

:root {
    --gold: #856548;
    --light-gold: #d0a85c;
}

html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    color: #fefee7;

    font-family: "Montserrat";
}

hgroup {
    background: radial-gradient(ellipse at center, #070709 0%, #000d11 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

hgroup h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "OSWALD";
    text-align: center;
}

.small-logo {
    font-family: 'Iceland', 'Roboto, sans-serif';
    display: flex;
    color: silver;
    display: flex;
    align-items: center;
    transition: 150ms all ease-in-out;
}

.small-logo p {
    margin-left: -1rem;
}

.small-logo img {
    height: 80px;
    transition: 100ms transform linear;
}

.small-logo:hover {
    /*Slight background glow*/
    filter: drop-shadow(0 0 5px #fff);
    transform: scale(1.05);
}

.small-logo>p {
    font-size: 2rem;
}

hgroup>nav div {
    display: flex;
}

hgroup>nav div a {
    margin: 0 1rem;
    position: relative;
    padding: 0.3rem;
}

hgroup>nav div a:not(.book-btn)::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 50%;
    width: 0;
    background: #fff;
    transition: 150ms all linear;
}

hgroup>nav div a:hover::after {
    left: 0;
    width: 100%;
}

.book-btn {
    border: 1px solid #fff3;
    border-radius: 2rem;
    padding: 0.3rem 1rem;
}

.book-btn:hover {
    background: #fff;
    color: black;
}

hgroup>nav {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

hgroup>nav a {
    color: white;
    text-decoration: none;
}


/*footer*/

footer {
    border-top: var(--gold) 1px solid;
    background: radial-gradient(ellipse at center, #070709 0%, #000d11 100%);
}

footer>div {
    max-width: 1000px;
    margin: auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.top-footer {
    display: flex;
    flex-wrap: wrap;
    /*! justify-content: space-evenly; */
    align-items: center;
}

.top-footer>div {

    margin: 1rem;
}

.top-footer>div>div {
    display: flex;
    flex-direction: column;
}

.top-footer>div h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.bottom-footer a {
    text-decoration: none;
    color: #bbb;
}

.bottom-footer a:hover {
    text-decoration: underline;
    color: #fff;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.bottom-footer>* {
    margin: 1rem;
}

.contact {
    min-width: 200px;
    width: 40%;
    max-width: 300px;
}

.socials {
    display: flex;
    flex-direction: row;
}

.socials>a {
    color: #fff;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    border: 1px solid #fff4;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 150ms all linear;
}

.socials>a:hover {
    background: #fff3;
    transform: scale(1.05);
    text-decoration: none;
}



/*BASE ELEMENTS*/
.lol-btn,
.lol-btn2 {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: black;
    background: #13d8f6;
    text-decoration: none;
    font-weight: 700;
}

.lol-btn2 {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    background: var(--light-gold);
}

.lol-btn::after,
.lol-btn2::after {
    position: absolute;
    left: -5px;
    top: -5px;
    content: "";
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 1px solid white;
    padding: 0;

    clip-path: polygon(calc(100% - 20px) 0, calc(100% + 1px) 0%, calc(100% + 1px) 20px,
            0 calc(100% - 20px), 0 100%, 20px calc(100%));

    transition: all 200ms ease-in-out;
}

.lol-btn2::after {
    border-color: silver;
}

.lol-btn:hover::after,
.lol-btn2:hover::after {
    clip-path: polygon(0 0, calc(100% + 1px) 0%, calc(100% + 1px) 100%,
            0 0, 0 100%, 100% calc(100%));
}


.mobile-top-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
}

.mobile-top-nav summary {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 10px;
    margin-right: 1rem;
    margin-top: 1rem;
}

.mobile-top-nav summary:hover {
    background: #fff3;
}

.mobile-top-nav summary>span {
    height: 2px;
    width: 100%;
    background: #fff;
    display: block;
}

.mobile-top-nav>details>div {
    position: fixed;
    top: 4rem;
    background: #010c0f;
    padding: 1rem;
    border-radius: 1rem 0 0 1rem;
    border: 1px solid var(--gold);
    border-right: none;

    right: 0;
    display: flex;
    flex-direction: column;
}

.mobile-top-nav>details>div>a {
    padding: 0.5rem 0;
    color: #fff;
}
.mobile-top-nav>details>div>.book-btn {
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    margin-top: 0.5rem;
}

@media screen and (max-width: 600px) {

    nav .small-logo>p {
        display: none;
    }

    .pc-top-nav {
        display: none;
    }

    .mobile-top-nav {
        display: flex;
    }

}