/* Navigation */
nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #1b1b1bcc;
}

nav .logo {
    cursor: pointer;
    margin-left: 55px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

nav .logo-box {
    display: flex;
    background-color: #264134;
    height: 100%;
    padding: 0px 20px 0px 20px;
}

nav .logo-box::after {
    position: absolute;
    content: '';
    top: 100px;
    left: 55px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 50px 0 50px;
    border-color: #264134 transparent transparent transparent;
}

nav .logo-box img:hover {
    opacity: 85%;
}

nav .logo-box img {
    transition: 0.25s;
    height: 90px;
}

nav .logo-text {
    font-family: 'Noto Sans', sans-serif;
    margin-left: 30px;
}

nav .logo-text h1 {
    font-weight: 600;
    font-size: 24px;
    color: #ededed;
}

nav .logo-text h2 {
    font-weight: 400;
    font-size: 16px;
    color: #dfdfdf;
    font-style: italic;
}

nav .nav-buttons {
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: row;
    right: 0;
}

nav .nav-buttons button {
    transition: 0.25s;
    display: flex;
    align-items: center;
    padding: 0px 30px 0px 30px;
    text-align: left;
    font-family: 'Noto Sans', sans-serif;
    border: 0;
    cursor: pointer;
}

nav .nav-buttons button:hover {
    padding: 0px 38px 0px 30px;
    opacity: 85%;
}

nav .nav-buttons button h1 {
    font-size: 22px;
    color: #ededed;
}

nav .nav-buttons button h2 {
    color: #babbbb;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
}

nav .nav-buttons span {
    scale: 1.75;
    margin-right: 30px;
    filter: invert(90%)
}

nav a {
    text-decoration: none;
    background-color: transparent;
}

#nav-reserveren {
    background-color: #264134;
}

#nav-contact {
    background-color: #1a1a1a;
}

#nav-dinnershow {
    background-color: #000000;
}

/* Hamburger (Menu) */
.hamburger {
    position: absolute;
    right: 25px;
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #dfdfdf;
}

@media (max-width:900px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav .nav-buttons {
        width: 100%;
        transition: 0.3s;
        position: fixed;
        right: -100vw;
        z-index: 3;
        height: 300px;
        top: 100px;
        display: flex;
        flex-direction: column;
    }

    nav .nav-buttons button {
        height: 10vh;
    }

    nav .nav-buttons.active {
        right: 0;
    }
}