﻿@font-face {
    font-family: "Huiwen ZhengKai";
    src: url("../fonts/HuiwenZhengKai.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Nanum Pen Script', cursive;
    font-weight: 500;
    background: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #BE0000;
    position: sticky;
    top: 0;
    z-index: 2000;
    height: 5rem;
}

.header-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
}

    .header-image img {
        height: 100%;
        object-fit: contain;
    }

/* Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-left: 1rem;
    padding-right: 0.3rem;
}

    nav ul {
        list-style: none;
        display: flex;
        gap: 0.7rem;
        margin: 0;
        padding: 0;
    }

    nav a {
        text-decoration: none;
        font-weight: bold;
        font-size: 1.8rem;
        color: white;
        transition: color 0.3s;
    }

        nav a:hover {
            color: #3D68AD; /* Rot als Akzent */
            text-decoration: underline;
        }

/* Burger-Menü für Mobile */

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

    .burger span {
        height: 0.2rem;
        width: 1.8rem;
        background: white;
        margin: 0.2rem 0.5rem;
        border-radius: 0.5rem;
        transition: 0.4s;
        transform-origin: center; /* Drehung aus der Mitte */
    }

    .burger:hover span {
        background: #3D68AD;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg);
        margin-bottom: -1rem;
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

.banner {
    width: 100%;
    height: 4rem;
    background: url("../images/Banner.jpg") repeat-x center center;
    background-size: 35rem 4.2rem; /* Bild exakt skalieren */
    animation: scrollBanner 10s linear infinite;
    position: relative;
    z-index: 1000;
}

.curve-section {
    height: 10rem;
    background-color: transparent;
    position: relative;
    margin-top: -5rem;
    z-index: 50;
    padding-bottom: 3rem;
}

.curve-section-footer {
    height: 10rem;
    background-color: transparent;
    margin-top: -4rem;
}

.curve {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes scrollBanner {
    from {
        background-position: 0 center;
    }

    to {
        background-position: -35rem center;
    }
}

main {
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    min-height: 100%;
    background: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.zeichen-container {
    display: flex;
    justify-content: center;
}

.zeichen {
    position: relative;
    z-index: 500;
    margin-top: -2vw;
}

    .zeichen img {
        height: 10vw;
    }

video {
    pointer-events: none;
    touch-action: none;
    user-select: none;
}

.video-row {
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
    padding-left: 1vw;
}

.main-img {
    flex: 1 1 calc(36% - 1vw);
    max-width: calc(36% - 1vw);
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.video-wrapper,
.video-wrapper-second {
    flex: 1 1 calc(32% - 1vw);
    max-width: calc(32% - 1vw);
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0.5vw 1vw #3D68AD);
    overflow: hidden;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper video,
.video-wrapper-second video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-frame {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    z-index: 100;
    margin-top: 2vw;
}

.video-room {
    background-image: url('../images/FrameGallery.png');
    background-size: 100% 100%;
    width: 80vw;
    height: 93.2vw;
    overflow: hidden;
    position: relative;
    padding-left: 1.2vw;
}

    .video-room video {
        position: absolute;
        width: 97%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

.video-cooking {
    background-image: url('../images/FrameGallery.png');
    background-size: 100% 100%;
    width: 58vw;
    height: 100vw;
    overflow: hidden;
    position: relative;
    padding-left: 0.8vw;
    padding-top: 1.2vw;
}

    .video-cooking video {
        position: absolute;
        width: 97%;
        height: 97.5%;
        object-fit: contain;
        object-position: center;
    }

.video-noodle {
    background-image: url('../images/FrameGallery.png');
    background-size: 100% 100%;
    width: 75.5vw;
    height: 100vw;
    overflow: hidden;
    position: relative;
    padding-left: 1.1vw;
    padding-top: 1.2vw;
}

    .video-noodle video {
        position: absolute;
        width: 97%;
        height: 97.5%;
        object-fit: contain;
        object-position: center;
    }

.video-food {
    background-image: url('../images/FrameGallery.png');
    background-size: 100% 100%;
    width: 61vw;
    height: 80vw;
    overflow: hidden;
    position: relative;
    padding-left: 1vw;
    padding-top: 1vw;
}

    .video-food video {
        position: absolute;
        width: 97%;
        height: 97.5%;
        object-fit: contain;
        object-position: center;
    }


.scene {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 1rem;
    display: flex;
    position: relative;
    margin-bottom: -20vw;
}

.character {
    position: relative; /* wichtig: Container für die Blase */
    padding-left: 18vw;
    margin-top: 10vw;
    width: 100%;
}

    .character img {
        position: absolute;
        width: 35vw;
        height: auto;
        display: block;
        opacity: 0;
        animation: fade 2.75s infinite;
    }

        /* Verzögerung für jedes Bild */
        .character img:nth-child(1) {
            animation-delay: 0s;
        }

        .character img:nth-child(2) {
            animation-delay: 0.5s;
        }

        .character img:nth-child(3) {
            animation-delay: 1s;
        }

        .character img:nth-child(4) {
            animation-delay: 1.5s;
        }

        .character img:nth-child(5) {
            animation-delay: 2s;
        }

        .character img:nth-child(6) {
            animation-delay: 2.5s;
        }

        .character img:nth-child(7) {
            animation-delay: 3s;
        }

@keyframes fade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.scene-go {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 1rem;
    display: flex;
    position: relative;
    margin-bottom: -20vw;
}

.character-go {
    position: relative; /* wichtig: Container für die Blase */
    padding-left: 18vw;
    width: 100%;
}

    .character-go img {
        position: absolute;
        width: 35vw;
        height: auto;
        display: block;
        opacity: 0;
        animation: fade 2s infinite;
    }

        /* Verzögerung für jedes Bild */
        .character-go img:nth-child(1) {
            animation-delay: 0s;
        }

        .character-go img:nth-child(2) {
            animation-delay: 0.5s;
        }

        .character-go img:nth-child(3) {
            animation-delay: 1s;
        }

        .character-go img:nth-child(4) {
            animation-delay: 1.5s;
        }

        .character-go img:nth-child(5) {
            animation-delay: 2s;
        }


.speech-bubble {
    position: absolute;
    top: -9vw;
    left: 45vw;
    height: calc(100vw * 0.22);
    padding: 1.5vw;
    background: #ffffff;
    border-radius: 2vw;
    color: #3D68AD;
    box-shadow: 0 1vw 2vw #3D68AD;
    opacity: 0;
    transform: translate(-1vw, 1vw) scale(0.9);
    animation: bubble-in 500ms ease-out forwards 400ms, bubble-float 4s ease-in-out infinite 1s;
    min-width: 5vw;
    max-width: 45vw;
    word-wrap: break-word;
}

    .speech-bubble::after {
        content: "";
        position: absolute;
        left: -4.5vw;
        bottom: -7vw;
        width: 0;
        height: 0;
        border-left: 8vw solid transparent;
        border-top: 3vw solid #fff;
        transform: rotate(-50deg);
        transform-origin: top left;
    }

.speech-bubble-go {
    position: absolute;
    top: 5vw;
    left: 45vw;
    height: calc(100vw * 0.08);
    padding: 1.5vw;
    background: #ffffff;
    border-radius: 2vw;
    color: #3D68AD;
    box-shadow: 0 1vw 2vw #3D68AD;
    opacity: 0;
    transform: translate(-1vw, 1vw) scale(0.9);
    animation: bubble-in 500ms ease-out forwards 400ms, bubble-float 4s ease-in-out infinite 1s;
    min-width: 5vw;
    max-width: 45vw;
    word-wrap: break-word;
}

    .speech-bubble-go::after {
        content: "";
        position: absolute;
        left: -4.5vw;
        bottom: -7vw;
        width: 0;
        height: 0;
        border-left: 8vw solid transparent;
        border-top: 3vw solid #fff;
        transform: rotate(-50deg);
        transform-origin: top left;
    }

.speech-text {
    font-size: 2.9vw; /* größer für Comic-Effekt */
    line-height: 1.4;
    font-family: 'Nanum Pen Script', cursive;
    font-weight: 700; /* fett für Comic-Dialog */
    letter-spacing: 0.5px; /* leichte Weite */
}

@keyframes bubble-in {
    to {
        opacity: 1;
        transform: translate(0,0) scale(1);
    }
}

@keyframes bubble-float {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(0,-4px) scale(1);
    }
}

@keyframes blink {
    0% {
        border-right-color: transparent;
    }

    50% {
        border-right-color: #999;
    }

    100% {
        border-right-color: transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    .speech-bubble, .speech-text {
        animation: none;
        opacity: 1;
        transform: none;
        border-right: none;
    }
}

.speech-arrow {
    width: 6vw;
    height: 15vw;
    margin: 1rem auto 0 auto;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: arrow-float 2.2s ease-in-out infinite;
}

.arrow-svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes arrow-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5vw);
    }

    100% {
        transform: translateY(0);
    }
}

.menu-container {
    position: relative;
    z-index: 100;
}

    .menu-container h1 {
        font-size: 8vw;
        margin-bottom: 8vw;
    }

.menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1vw;
    color: #3D68AD;
    margin-top: -7rem;
}

.section {
    width: 29vw;
    overflow: visible;
    text-align: center;
}

    /* Linke Spalte: rechtsbündig */
    .section:nth-child(odd) {
        justify-self: center;
    }

    /* Rechte Spalte: linksbündig */
    .section:nth-child(even) {
        justify-self: center;
    }

    /* Linke Spalte: rechtsbündig */
    .section:nth-child(odd) h2 {
        justify-self: center;
        background: #BE0000;
    }

    /* Rechte Spalte: linksbündig */
    .section:nth-child(even) h2 {
        justify-self: center;
        background: #3D68AD;
    }

    .section h2 {
        margin: 0;
        padding: 1vw;
        cursor: pointer;
        text-align: center;
        font-size: 5vw;
        width: 100%;
        background: inherit;
        color: white;
        display: inline-block;
        transition: transform 0.2s ease;
    }

        .section h2:hover {
            animation: wobble-h2 0.3s ease;
        }

@keyframes wobble-h2 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.section-content {
    display: none; /* standardmäßig eingeklappt */
    padding: 1vw;
    color: #3D68AD;
}

.section-description {
    font-size: 2vw;
    background: white;
    color: #b91c1c;
    text-align: center;
    margin-bottom: 1vw;
    width: 160%;
    margin-left: -30%;
    box-sizing: border-box;
}

.dish {
    background: white;
    margin-bottom: 0.1vw;
    padding: 0.5vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 160%;
    margin-left: -30%;
    box-sizing: border-box;
}

.dish-soup {
    background: white;
    border: 0.2vw solid #b91c1c;
    margin-bottom: 0.1vw;
    padding: 0.5vw;
    box-shadow: 0 0.1vw 0.3vw rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 160%;
    margin-left: -30%;
    box-sizing: border-box;
}

.dish-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.title {
    margin: 0;
    font-size: 2.8vw;
    white-space: pre;
}

.description-row {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    flex-wrap: nowrap;
    margin: 0;
}

.chili {
    color: red;
    font-size: 2.2vw;
    margin: 0;
}

.vegan {
    color: green;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

.additives {
    font-size: 1.5vw;
    color: #666;
    margin: 0;
    white-space: nowrap;
}

.additives-aperitifs {
    font-size: 2vw;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.description-chinese {
    margin: 0;
    margin-bottom: 0.5vw;
    padding-left: 2.2vw;
    font-size: 2.3vw;
    font-family: "Huiwen ZhengKai", "Noto Serif SC", serif;
}

.description {
    margin: 0;
    margin-top: -0.5vw;
    padding-left: 2.2vw;
    font-size: 2.5vw;
}

.drink-description {
    margin: 0;
    font-size: 2vw;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5vw;
}

.price {
    color: #b91c1c;
    font-weight: bold;
    font-size: 2.8vw;
    white-space: nowrap;
    text-align: right;
}

.footnotes-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
    align-items: center;
    padding: 1vw;
    color: #3D68AD;
    font-size: 1.8vw;
}

.footnote {
    margin-bottom: 0.5vw;
    width: 30vw;
}

    /* Linke Spalte: rechtsbündig */
    .footnote:nth-child(odd) {
        justify-self: end;
        background: white;
    }

    /* Rechte Spalte: linksbündig */
    .footnote:nth-child(even) {
        justify-self: start;
        background: white;
    }

.btn-menu {
    font-size: 3.9vw;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.popup-content {
    background: #fff;
    margin: 5% auto;
    width: 80%;
    max-width: 1270px;
    max-height: 80vh;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #3D68AD;
}

#pdf-container {
    flex: 1;
    overflow: auto;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
}

#pdf-controls {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    #pdf-controls button {
        color: #3D68AD;
        font-weight: 600;
    }

#page-info {
    color: #3D68AD;
    font-weight: 600;
}

#open-viewer {
    display: block;
    margin: 20px auto;
    color: #3D68AD;
    font-weight: 600;
    background: white;
    border: 2px solid #3D68AD;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-wrapper {
    display: flex;
    justify-content: center;
    z-index: 100;
}

.video {
    background-image: url('../images/FrameGallery.png');
    background-size: 100% 100%;
    width: 80vw;
    height: 93.2vw;
    overflow: hidden;
    position: relative;
    padding-left: 1.2vw;
}

    .video video {
        position: absolute;
        width: 97%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

footer {
    background-color: #BE0000;
    color: #fff;
    padding: 0.1rem 0;
    position: relative;
    z-index: 100;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 10rem;
    margin-top: -8rem;
}

    .footer-column h4 {
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }

    .footer-column p {
        font-size: 1.5rem;
    }

    .footer-column a {
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
    }

        .footer-column a:hover {
            color: #3D68AD;
            text-decoration: underline;
        }

    .footer-column ul {
        list-style: none;
    }

        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
        }

            .footer-column ul li a:hover {
                color: #3D68AD; /* Akzentfarbe */
                text-decoration: underline;
            }

.nav-footer {
    align-content: center;
}

.nav-footer {
    text-align: center;
    margin: 1rem 0;
}

    .nav-footer ul {
        display: inline-block;
        text-align: left;
        list-style: none;
        padding: 0;
        margin: 0;
    }

.social a {
    color: white;
    font-size: 3rem;
    margin: 0 0.5rem;
    text-decoration: none;
}

.bowl-swarm {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bowl {
    position: absolute;
    opacity: 0.85;
    animation: fly-diagonal linear forwards;
}

@keyframes fly-diagonal {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-200vw, 200vh);
    }
}


.cookie-popup {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.cookie-box {
    background-color: #fff;
    color: #000;
    padding: 1vh;
    max-width: 25vh;
    border-radius: 1.2vh;
    box-shadow: 0 0.5vh 1vh rgba(0,0,0,0.3);
    text-align: center;
}

    .cookie-box h2 {
        margin-top: 0;
        font-size: 1vh;
    }

    .cookie-box p {
        font-size: 1vh;
        margin-bottom: 1vh;
    }

    .cookie-box a {
        color: #3D68AD;
        text-decoration: underline;
    }

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 0.5vh;
}

    .cookie-buttons button {
        flex: 1;
        padding: 0.5vh;
        border: none;
        border-radius: 1vh;
        font-weight: bold;
        cursor: pointer;
    }

#reject-cookies {
    background-color: #ccc;
    color: #000;
}

#customize-cookies {
    background-color: #eee;
    color: #000;
}

#accept-cookies {
    background-color: #3D68AD;
    color: #fff;
}

.map-container {
    position: relative;
    width: 95vw;
    height: 64vw;
    margin: 1vh auto;
}

    .map-container iframe {
        margin-top: 0.6vw;
        margin-left: 0.6vw;
        width: 98.5%;
        height: 97.3%;
        border: none;
        z-index: 100;
        position: relative;
    }

.frame-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/FrameMap.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 500;
}

.info-wrapper {
    position: relative;
    width: 95vw;
    margin: 1vw auto;
}

.info-container {
    display: flex;
    justify-content: space-between;
    gap: 1vw;
    width: 95vw;
    margin: 1vw auto;
    background-color: #f9f9f9;
    box-shadow: 0 0.5vh 1vh rgba(0,0,0,0.1);
    font-size: 3.9vw;
    position: relative;
    z-index: 100;
}

.info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: left;
}

    .info-column h3 {
        margin-top: 1vw;
        margin-bottom: 0.1vw;
        color: #3d68ad;
    }

    .info-column p {
        margin-block: 1vw;
        line-height: 1.1;
    }

.frame-overlay-info {
    position: absolute;
    inset: 0;
    background-image: url('../images/FrameInfo.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 500;
}


.phone {
    margin-top: 0;
}

.time {
    display: inline-block;
}

.indent {
    margin-left: 11vw;
}

:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --muted: #6b7280;
    --accent: #b91c1c;
    --accent-2: #14532d;
    --card: #f9fafb;
    --border: #e5e7eb;
    --radius: 12px;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --max-width: 1100px;
    --shadow-1: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

main h1 {
    text-align: center;
    color: #3D68AD;
}

@media (max-width: 1070px) {
    .slideshow-container {
        flex-direction: column;
        align-items: center;
        height: 200vw;
        padding: 1rem;
    }

    .slideshow-text {
        width: calc(100vw - 4rem);
        height: 100vw;
        font-size: 1.8rem;
    }

    .slideshow {
        flex: 0 0 100vw;
        width: calc(100vw - 4rem);
    }

    .menu {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .menu-container h1 {
        margin-bottom: 15vw;
        font-size: 12vw;
    }

    .section:nth-child(odd) {
        justify-self: center;
        transform: translateX(3vw);
    }

    .section:nth-child(even) {
        justify-self: center;
        transform: translateX(-3vw);
    }

    .footnotes-section {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footnote:nth-child(odd) {
        justify-self: center;
    }

    .footnote:nth-child(even) {
        justify-self: center;
    }

    .section {
        width: 58vw;
    }

        .section h2 {
            font-size: 9vw;
        }

    .section-description {
        font-size: 4vw;
    }

    .title {
        font-size: 4.8vw;
    }

    .chili {
        font-size: 4.2vw;
    }

    .additives {
        font-size: 3.5vw;
    }

    .additives-aperitifs {
        font-size: 4vw;
    }

    .description-chinese {
        font-size: 4.3vw;
    }

    .description {
        font-size: 4.5vw;
    }

    .drink-description {
        font-size: 4vw;
    }

    .price {
        font-size: 4.8vw;
    }

    .zeichen {
        margin-top: -6vw;
    }
}

@media (max-width: 900px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #BE0000;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        border: 1px solid #ddd;
        padding: 1rem;
    }

        nav ul.active {
            display: flex;
        }

    .burger {
        display: flex;
    }
}


@media (max-width: 768px) {
    .menu-container h1 {
        margin-bottom: 17vw;
    }

    .slideshow-text {
        font-size: 1.5rem;
    }

    .video-row {
        display: grid;
        grid-template-areas:
            "main-img main-img"
            "video1 video2";
        grid-template-columns: 1fr 1fr;
        gap: 1vw;
    }

    .main-img {
        grid-area: main-img;
        width: 100%;
        max-width: 100%;
    }

    .video-wrapper {
        grid-area: video1;
        width: 100%;
        max-width: 100%;
    }

    .video-wrapper-second {
        grid-area: video2;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        justify-content: center;
        align-items: center;
    }

        .video-wrapper-second video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .speech-bubble {
        margin-right: 1vw;
    }

    .zeichen {
        margin-top: -8vw;
    }
}

@media (max-width: 600px) {
    .info-container {
        flex-direction: column;
        text-align: center;
    }

    .menu-container h1 {
        margin-bottom: 25vw;
    }

    .zeichen {
        margin-top: -9vw;
    }
}

@media (max-width: 500px) {
    .info-container {
        flex-direction: column;
        text-align: center;
    }

    .menu-container h1 {
        margin-bottom: 25vw;
    }

    .footer-column {
        flex: 0 0 50%;
        margin-top: 0;
    }

    .zeichen {
        margin-top: -15vw;
    }
}
