body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

header {
    z-index: 99 !important;
}

#masthead .nav_container {
    width: 100%;
    margin: 0 auto;
    background-color: var(--creme);
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: none !important;
    transition: background-color 0.5s, backdrop-filter 0.5s, box-shadow 0.5s, padding 0.5s;
}

#masthead .nav_container.scrolled {
    backdrop-filter: none !important;
    box-shadow: 0 0 20px var(--night) !important;
}

.hero {
    position: relative;
    width: 100vw;
}

.hero * {
    position: relative;
    z-index: 1;
}

#masthead {
    bottom: 0 !important;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

#masthead.is-active {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

#masthead:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
}

#masthead.is-active:after {
    opacity: 1;
    z-index: 999 !important;
}

.hamburger {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    margin: 1rem 0 0 0;
    position: absolute;
    right: 1rem;
    overflow: visible;
    outline: none;
    padding: 0;
    text-transform: none;
    transition: opacity 0.25s ease-in-out;
    appearance: none;
    z-index: 9999999 !important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 35px;
    height: 24px;
    display: inline-block;
    position: relative;
    margin-top: 50%;
    right: 1rem;
    background-color: transparent;
}

.hamburger-inner {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--rose-red);
    border-radius: 4px;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

/* Position der einzelnen Striche im Standardzustand */
.hamburger-inner:nth-child(1) {
    top: 0;
}

.hamburger-inner:nth-child(2) {
    top: 10px;
}

.hamburger-inner:nth-child(3) {
    top: 20px;
}

#masthead.is-active .hamburger-inner:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

#masthead.is-active .hamburger-inner:nth-child(2) {
    opacity: 0;
}

#masthead.is-active .hamburger-inner:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.hamburger-box.is-active .hamburger-inner:nth-child(1) {
    transform: rotate(0);
    top: 0;
}

.hamburger-box.is-active .hamburger-inner:nth-child(2) {
    opacity: 1;
}

.hamburger-box.is-active .hamburger-inner:nth-child(3) {
    transform: rotate(0);
    top: 20px;
}

.hamburger-label {
    position: absolute;
    color: var(--rose-red);
    display: inline-block;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    margin-left: 0.3125em;
    text-transform: uppercase;
    font-size: 1.4rem;
    right: 50px;
    top: 50%;
    transition: color 0.5s;
}

.hamburger-label.scrolled {
    color: var(--rose-red);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
    display: none;
    transition: 0.6s all ease-in-out;
}

#menu-overlay.is-active {
    display: block;
    z-index: 0;
}

#masthead.is-active~.menu-overlay {
    display: block;
}

#masthead.is-active .nav_container {
    z-index: 999999 !important;
}

#masthead.is-active .hamburger-label {
    color: var(--night);
}

#site-nav {
    clear: both;
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    padding: 4rem 0;
    margin-left: 10rem;
    position: relative !important;
    z-index: 999999 !important;
}

#site-nav.is-active {
    height: auto;
    overflow: visible;
    backdrop-filter: none;
}

#site-nav.is-active .logo {
    opacity: 0;
}

#site-nav .col {
    padding-bottom: 2.5em;
    list-style: none;
}

#site-nav .col .dropdown {
    position: relative;
}

#site-nav .col .dropdown::before {
    position: absolute;
    content: '';
    display: block;
    background-color: var(--rose-red);
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.5s all ease-in-out;
}

#site-nav .col li,
#site-nav .col li a,
#site-nav .col ul li a {
    font-family: "Montserrat-Medium", sans-serif !important;
    font-weight: 700;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    color: var(--night);
}

#site-nav .col ul li {
    margin: 1rem 0;
    font-weight: bold !important;
}

#site-nav .col ul li .nav_item {
    font-family: "Montserrat-Medium", sans-serif !important;
    font-weight: bold !important;
}

#site-nav .col .dropdown_item {
    margin-top: -1rem;
}

#site-nav .col .dropdown li a {
    font-family: "Montserrat-Medium", sans-serif;
    display: block;
    max-width: 100%;
    padding: 10px 15px;
    word-wrap: break-word !important;
    font-weight: 400;
    border-radius: 2rem !important;
    border-radius: 0 2rem 2rem 0 !important;
    transition: 0.4s all ease-in-out;
}

#site-nav .col li a {
    padding: 10px 15px;
    border-radius: 2rem !important;
    transition: 0.4s all ease-in-out;
}

#site-nav .col ul li:first-child {
    margin-bottom: 1rem;
}

#site-nav .col li a:hover,
#site-nav .col ul li a:hover {
    background-color: var(--rose-red);
    color: var(--white);
}

#site-nav li a {
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#site-nav ul {
    list-style-type: none;
    margin-top: 1em;
    width: max-content;
}

#site-nav ul li a {
    color: var(--night);
}

#site-nav .social {
    margin-right: auto;
    float: left;
    display: flex;
    gap: 2rem;
    width: fit-content;
    height: 100%;
    margin-top: 2rem;
    transition: 0.4s all ease-in-out;
}

#site-nav .social .social_logo {
    width: 4rem;
    height: 4rem;
}

#site-nav .social .social_logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all ease-in-out;
}

@media screen and (min-width: 200px) and (max-width: 960px) {
    #site-nav .col ul {
        flex-direction: column !important;
        max-width: 100% !important;
    }

    #site-nav .col:nth-child(3) {
        margin-left: 1.5rem;
    }

    #site-nav .social {
        float: left;
        width: 100%;
        height: 4rem;
        margin-top: 2rem;
        margin-left: 1rem;
        margin-bottom: 4rem;
    }
}

@media screen and (min-width: 550px) {
    #site-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #site-nav .col {
        flex: 0 0 50%;
    }
}

@media screen and (min-width: 768px) {
    #site-nav .col {
        flex: 0 0 33.333333333%;
    }

    #site-nav .col:nth-child(3) {
        margin-top: 10px;
    }
}

@media screen and (min-width: 960px) {
    #site-nav {
        flex-wrap: nowrap;
    }

    #site-nav .col {
        flex: 0 0 15%;
    }

    #site-nav .col:last-child {
        display: flex;
        justify-content: flex-end;
    }
}

#masthead .col {
    opacity: 0;
}

#masthead.is-active .col {
    transform: translateY(40px);
    transition: opacity 0.3s ease;
    animation: fade-in-stagger 0.8s ease forwards;
}

#masthead.is-active .col:nth-child(1) {
    animation-delay: 0;
}

#masthead.is-active .col:nth-child(2) {
    animation-delay: 0.1s;
}

#masthead.is-active .col:nth-child(3) {
    animation-delay: 0.2s;
}

#masthead.is-active .col:nth-child(4) {
    animation-delay: 0.3s;
}

#masthead.is-active .col:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes fade-in-stagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    position: fixed;
    left: 2rem;
    top: 0.5rem;
    z-index: 9999999 !important;
    width: 10rem;
    height: auto;
    opacity: 1;
    transition: 0.3s all ease-in-out;
}

.logo img {
    transition: all 0.5s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo img.scrolled {
    width: 100%;
}

#masthead.is-active .logo {
    opacity: 0;
    transition: 0.3s all ease-in-out;
}