body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

body.is-locked {
    overflow: hidden;
}

.logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    pointer-events: none;
}

.logo-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.logo-bg.is-black {
    background-color: black;
}

.logo-lottie {
    position: absolute;
    width: 210px;
    height: 210px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.topmenu {
    opacity: 0;
    position: fixed;
    height: 80px;
    top: 36px;
    right: 40px;
}

.topmenu.show {
    opacity: 1;
}

.topmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.topmenu li {
    margin: 0;
}

.topmenu a {
    position: relative;
    display: inline-block;
    padding: 14px 20px;
    font-family: "Lexend", sans-serif;
    color: black;
    text-decoration: none;
}

.topmenu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2.5px;
    width: 100%;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.content-padded {
    padding: 0 40px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-grid-canvas {
    position: relative;
    width: 50%;
    height: 40%;
    /* background-color: lightgrey; */
}

.headline {
    opacity: 0;
    pointer-events: none;
}

.headline.show {
    opacity: 1;
}

.headline-section {
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-section {
    padding: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
}

.instagram-preview {
    /* width: 50%; */
    padding: 30px 0;
}

.instagram-preview video {
    width: 100%;
}

.separator {
    width: 75%;
    height: 1px;
    background-color: black;
    margin: 30px 0;
}

h1 {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(1.6rem, 4vw, 4rem);
    max-width: 75vw;
    text-align: center;
    color: black;
}

h2 {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.6rem, 4vw, 4rem);
    max-width: 75vw;
    text-align: center;
    display: inline-block;
    padding: 0;
    margin: 0;
}

p {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    max-width: 75vw;
    text-align: center;
    display: inline-block;
}

p a {
    color: black;
    transition: 0.2s color;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.video-container.is-small {
    padding: 0 0 50px 0;
    pointer-events: none;
}

.video-container.is-small video {
    aspect-ratio: 16 / 9;
}

.video-caption {
    font-size: clamp(0.8rem, 0.8vw, 1rem);
}

.video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px);
    /* darkness of dots */
    background-size: 3px 3px;
    /* spacing between dots */
    background-color: rgba(0, 0, 0, 0.1);
    /* darkness off overlay */
    z-index: 2;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(80px, 20vw, 130px);
    height: clamp(80px, 20vw, 130px);
    z-index: 3;
}

.video-icon {
    width: clamp(80px, 20vw, 130px);
    height: clamp(80px, 20vw, 130px);
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    /* easeOutQuart */
}

.video-icon-arrow {
    width: 50px;
    height: 50px;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

/* Fullscreen Modal */
/* .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 1);
    justify-content: center;
    align-items: center;
    z-index: 9999;
} */

/* video modal */

#frContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Make the iframe fill the entire browser window */
#frContainer iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Close button */
.close {
    color: #fff;
    font-size: 40px;
    position: absolute;
    top: -1px;
    right: 10px;
    cursor: pointer;
    z-index: 10000;
}

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: none;
    align-items: center;
    justify-content: center;
}

/* .modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-content {
    position: relative;
    margin: auto;
    width: 100vw;
} */

/* .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
} */

.footer {
    width: 100%;
    padding: 35px 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.footer-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-icons a {
    display: inline-flex;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.icon {
    width: 48px;
    height: 48px;
    display: block;
    fill: white;
}

.footer-copyright {
    margin-top: 20px;
    font-weight: 100;
    color: #444;
    font-weight: normal;
    font-size: clamp(0.8rem, 0.8vw, 1rem);
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    width: 100vw;
    max-width: 80%;
    z-index: 1000;
}

.cookie-notice.is-hidden {
    display: none;
}

.cookie-container {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px;
    text-align: right;
    transform: translateY(120%);
    opacity: 0;
    /* display: flex;
    align-items: center;
    flex-direction: column; */
}

.cookie-notice p {
    margin: 0 0 12px 0;
    font-size: clamp(0.8rem, 0.8vw, 1rem);
}

@media (hover: hover) and (pointer: fine) {
    .topmenu a:hover::after {
        transform: scaleX(1);
    }

    p a:hover {
        color: #791F61;
    }

    .video-play:hover .video-icon {
        transform: scale(0.7);
    }

    .video-play:hover .video-icon-arrow {
        transform: scale(0.7);
    }

    .footer-icons a:hover {
        opacity: 1;
    }
}

@media (min-width: 768px) {

    .headline-section {
        height: 100vh;
    }

    .info-section {
        padding: 50px 0;
    }

    .separator {
        width: 50%;
        margin: 40px 0;
    }

    .video-container .video {
        aspect-ratio: 16 / 9;
    }

    .video-container.is-small {
        width: 50%;
    }

    .video-icon-arrow {
        width: 80px;
        height: 80px;
    }

    .instagram-preview {
        width: 50%;
    }

    .cookie-notice {
        max-width: 320px;
        right: 20px;
        transform: translateX(0);
    }

}

@media (min-width: 1024px) {

    p {
        max-width: 50vw;
    }

}