    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

    /* Navigation Banner */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .logo {
        height: 140px;
        width: auto;
        margin-bottom: 0.5rem;
        transition: height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
    }

    nav.scrolled {
        padding: 0.5rem 0;
    }

    nav.scrolled .logo {
        height: 0;
        opacity: 0;
        margin-bottom: 0;
    }

    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 0 1.5rem;
        transition: margin 0.3s ease;
    }

    /* FIX 2: scrolled margin nur auf Desktop anwenden */
    @media (min-width: 769px) {
        nav.scrolled ul li {
            margin: 0 1rem;
        }
    }

    nav ul li a {
        color: black;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
        position: relative;
        padding-bottom: 2px;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #ff6b6b;
        transition: width 0.3s ease;
    }

    nav ul li a:hover {
        color: #ff6b6b;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    /* Burger Menu Button */
    .burger-menu {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px 8px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        overflow: visible;
        gap: 0;
    }

    .burger-menu span {
        width: 26px;
        height: 4px;
        background-color: black;
        margin: 0;
        padding: 0;
        display: block;
        border-radius: 2px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .burger-menu span + span {
        margin-top: 6px;
    }

    /* Burger Menu Active State */
    .burger-menu.active span:nth-child(1) {
        transform: translate(0, 10px) rotate(45deg);
        transform-origin: center;
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translate(0, -10px) rotate(-45deg);
        transform-origin: center;
    }

    /* Parallax Sections */
    .parallax-section {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
    }

    .parallax-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    /* Mobile parallax inner background element */
    .parallax-bg {
        display: none;
    }

    .parallax-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: white;
        padding: 2rem;
    }

    .parallax-img {
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        width: 340px;
        max-width: 40%;
        opacity: 0.95;
        z-index: 0;
        pointer-events: none;
        transform: translateY(10px);
    }

    .parallax-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .parallax-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    /* Content Section */
    .content-section {
        padding: 60px 20px;
        background-color: #f9f9f9;
        position: relative;
        overflow: hidden;
    }

    .content-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #333;
        border-bottom: 3px solid #ff6b6b;
        padding-bottom: 0.5rem;
    }

    .content-section p {
        margin-bottom: 1rem;
        text-align: left;
        font-size: 1.1rem;
        color: #555;
    }

    /* Parallax 1 */
    #home {
        height: 68vh;
        min-height: 580px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('imgs/Essen_Lokal/Pizza.png');
        background-size: cover;
        background-position: center 40%;
        background-repeat: no-repeat;
        margin-top: 60px;
    }

    /* Hero title in about section */
    .about-hero-title {
        font-size: 3.5rem;
        color: #333;
        margin-bottom: 0.1rem;
        border-bottom: none;
        padding-bottom: 0;
        text-shadow: none;
        text-align: center;
    }

    .about-hero-subtitle,
    .content-section p.about-hero-subtitle {
        font-size: 1.5rem;
        color: #ff6b6b;
        font-weight: 600;
        margin-bottom: 2rem;
        text-align: center;
    }

    @media (max-width: 768px) {
        #home {
            height: 40vh;
            min-height: 320px;
        }
    }

    /* Parallax 2 */
    #parallax2 {
        height: 48vh;
        min-height: 48vh;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('imgs/Essen_Lokal/Muscheln.jpeg');
        background-size: cover;
        background-position: 55% 20%;
        background-repeat: no-repeat;
    }

    /* Parallax 3 */
    #parallax3 {
        height: 48vh;
        min-height: 48vh;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('imgs/Essen_Lokal/Pasta.jpeg');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    /* Parallax 4 */
    #parallax4 {
        background-image: none;
        background-color: #000;
        overflow: hidden;
        height: 780px;
    }

    /* === Slideshow === */
    .slideshow {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .slideshow-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.4s ease-in-out;
        pointer-events: none;
    }

    .slideshow-slide.active {
        opacity: 1;
        pointer-events: auto;
    }

    .slideshow-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Per-slide object-position */
    #slideshow4 .slideshow-slide:nth-child(1) img { object-position: center 30%; }
    #slideshow4 .slideshow-slide:nth-child(2) img { object-position: center 70%; }
    #slideshow4 .slideshow-slide:nth-child(5) img { object-position: center 30%; }

    .slideshow-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.38);
        z-index: 1;
    }

    .slideshow-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 1.4rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        backdrop-filter: blur(4px);
        line-height: 1;
    }

    .slideshow-arrow:hover {
        background: rgba(255, 107, 107, 0.5);
        border-color: #ff6b6b;
        transform: translateY(-50%) scale(1.08);
    }

    .slideshow-arrow.prev { left: 1.5rem; }
    .slideshow-arrow.next { right: 1.5rem; }

    .slideshow-dots {
        position: absolute;
        bottom: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        gap: 0.55rem;
        align-items: center;
    }

    .slideshow-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.45);
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        padding: 0;
    }

    .slideshow-dot.active {
        background: #ff6b6b;
        transform: scale(1.35);
    }

    #parallax4 .parallax-content {
        z-index: 2;
    }

    .slideshow-fullscreen-btn {
        position: absolute;
        top: 1.1rem;
        right: 1.2rem;
        z-index: 3;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
        transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .slideshow-fullscreen-btn:hover {
        background: rgba(255, 107, 107, 0.5);
        border-color: #ff6b6b;
        transform: scale(1.1);
    }

    /* Lightbox */
    .slideshow-lightbox {
        position: fixed;
        inset: 0;
        z-index: 9000;
        background: rgba(0, 0, 0, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .slideshow-lightbox.open {
        opacity: 1;
        visibility: visible;
    }

    .lightbox-slides {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .lightbox-slide {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        padding: 60px 80px 80px;
    }

    .lightbox-slide.active {
        opacity: 1;
    }

    .lightbox-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        user-select: none;
    }

    .lightbox-close {
        position: fixed;
        top: 1.2rem;
        right: 1.4rem;
        z-index: 9001;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.4);
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .lightbox-close:hover {
        background: rgba(255, 107, 107, 0.6);
        border-color: #ff6b6b;
        transform: scale(1.1) rotate(90deg);
    }

    .lightbox-arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9001;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.4);
        color: white;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        font-size: 1.8rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        line-height: 1;
    }

    .lightbox-arrow:hover {
        background: rgba(255, 107, 107, 0.5);
        border-color: #ff6b6b;
        transform: translateY(-50%) scale(1.08);
    }

    .lightbox-arrow.prev { left: 1.5rem; }
    .lightbox-arrow.next { right: 1.5rem; }

    .lightbox-dots {
        position: fixed;
        bottom: 1.4rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9001;
        display: flex;
        gap: 0.55rem;
        align-items: center;
    }

    .lightbox-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        padding: 0;
    }

    .lightbox-dot.active {
        background: #ff6b6b;
        transform: scale(1.35);
    }

    @media (max-width: 768px) {
        .lightbox-slide { padding: 60px 50px 70px; }
        .lightbox-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
        .lightbox-arrow.prev { left: 0.5rem; }
        .lightbox-arrow.next { right: 0.5rem; }
    }

    /* Parallax 5 — Bild-Komposition */
    #parallax5 {
        height: auto;
        min-height: 500px;
        background-image: none;
        background-color: #f9f9f9;
        background-attachment: scroll;
        overflow: visible !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 40px 80px 40px;
    }

    #parallax5::before {
        display: none;
    }

    .p5-composition {
        position: relative;
        width: 100%;
        max-width: 1100px;
        height: 620px;
        margin: 0 auto;
        overflow: visible;
    }

    .p5-theke {
        position: absolute;
        left: 0%;
        top: 0%;
        width: 85%;
        height: 84%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        z-index: 2;
    }
    .p5-theke, .p5-thekeninhalt, .p5-circle-2, .p5-circle-3, .p5-diamond-1 { cursor: pointer; }
    .p5-theke:hover {
        transform: scale(1.02);
        box-shadow: 0 28px 80px rgba(0,0,0,0.3);
    }
    .p5-theke img { width: 100%; height: 100%; object-fit: cover; }

    .p5-thekeninhalt {
        position: absolute;
        left: -170px;
        bottom: 0;
        width: 36%;
        height: 36%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0,0,0,0.18);
        transition: transform 0.4s ease;
        z-index: 3;
    }
    .p5-thekeninhalt:hover { transform: scale(1.03); }
    .p5-thekeninhalt img { width: 100%; height: 100%; object-fit: cover; }

    /* Nachspeisse1 */
    .p5-diamond-body {
        position: absolute;
        width: 212px;
        height: 310px;
        overflow: hidden;
        box-shadow: 0 16px 50px rgba(0,0,0,0.25);
        transition: transform 0.4s ease;
        border: 3px solid rgba(0,0,0,0.06);
        transform: rotate(45deg);
        border-radius: 12px;
        z-index: 4;
        pointer-events: none;
    }
    .p5-diamond-body:hover { transform: rotate(45deg) scale(1.04); }
    .p5-diamond-body img {
        width: 142%;
        height: 142%;
        object-fit: cover;
        transform: rotate(-45deg) translate(-15%, -15%);
        pointer-events: none;
    }

    /* Nachspeisse1 */
    .p5-diamond-1 {
        position: absolute;
        left: 86%;
        top: 58%;
        width: 236px;
        height: 236px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 16px 50px rgba(0,0,0,0.2);
        transition: transform 0.4s ease;
        border: 3px solid rgba(0,0,0,0.05);
        z-index: 3;
    }
    .p5-diamond-1:hover { transform: translateY(-6px) scale(1.04); }
    .p5-diamond-1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Nachspeisse2 */
    .p5-circle-2 {
        position: absolute;
        left: 86%;
        top: 0;
        width: 236px;
        height: 236px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 16px 50px rgba(0,0,0,0.2);
        transition: transform 0.4s ease;
        border: 3px solid rgba(0,0,0,0.05);
        z-index: 3;
    }
    .p5-circle-2:hover { transform: translateY(-6px) scale(1.04); }
    .p5-circle-2 img { width: 100%; height: 100%; object-fit: cover; }

    /* KuchenStück */
    .p5-circle-3 {
        position: absolute;
        left: 105%;
        top: 26.5%;
        width: 265px;
        height: 265px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 16px 50px rgba(0,0,0,0.2);
        transition: transform 0.4s ease;
        border: 3px solid rgba(0,0,0,0.05);
        z-index: 2;
    }
    .p5-circle-3:hover { transform: translateX(-6px) scale(1.03); }
    .p5-circle-3 img { width: 100%; height: 100%; object-fit: cover; }

    /* Footer */
    footer {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 2rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.4rem 0.2rem;
    }

    .footer-sep {
        color: #555;
        padding: 0 0.4rem;
        user-select: none;
    }

    /* Footer Links */
    footer a {
        color: #ff6b6b;
        text-decoration: none;
        font-weight: bold;
        position: relative;
        transition: all 0.3s ease;
        padding-bottom: 2px;
    }

    footer a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #ff6b6b;
        transition: width 0.3s ease;
    }

    footer a:hover {
        color: #fff;
    }

    footer a:hover::after {
        width: 100%;
    }

    /* Download Button */
    .download-btn {
        display: inline-block;
        background-color: #ff6b6b;
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        margin-top: 1rem;
        border: 2px solid #ff6b6b;
    }

    .download-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #d91e1e;
        transition: left 0.3s ease;
        z-index: -1;
    }

    .download-btn:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    }

    .download-btn:hover::before {
        left: 0;
    }

    /* Contact Links */
    .contact-link {
        color: #ff6b6b;
        text-decoration: none;
        font-weight: bold;
        position: relative;
        transition: all 0.3s ease;
        padding-bottom: 2px;
    }

    .contact-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #ff6b6b;
        transition: width 0.3s ease;
    }

    .contact-link:hover {
        color: #d91e1e;
    }

    .contact-link:hover::after {
        width: 100%;
    }

    /* =============================================
       Decorative Basil Images
       - Zwei pro Section (links + rechts)
       - Unterschiedliche Größen, Rotationen
       - opacity: 0.6
    ============================================= */

    .deco-image {
        position: absolute;
        height: auto;
        opacity: 0.6;
        z-index: 0;
        pointer-events: none;
    }

    /* === #about === */
    #about .deco-image:nth-of-type(1) {
        width: 1200px;
        left: -500px;
        top: 50%;
        transform: translateY(-35%) rotate(45deg) translateX(-10%) scale(120%);
    }
    #about .deco-image:nth-of-type(2) {
        width: 980px;
        right: -430px;
        top: 10%;
        transform: rotate(-10deg) translateY(-14%) translateX(10%) scale(180%);
    }

    /* === #menu === */
    #menu .deco-image:nth-of-type(1) {
        width: 1100px;
        left: -470px;
        top: 20%;
        transform: rotate(40deg) translateY(-15%);
    }
    #menu .deco-image:nth-of-type(2) {
        width: 1250px;
        right: -540px;
        top: 50%;
        transform: translateY(-50%) rotate(-30deg);
    }

    /* === #gallery === */
    #gallery .deco-image:nth-of-type(1) {
        width: 1050px;
        left: -450px;
        top: 60%;
        transform: translateY(-50%) rotate(50deg) scale(110%);
    }
    #gallery .deco-image:nth-of-type(2) {
        width: 1150px;
        right: -490px;
        top: 15%;
        transform: rotate(35deg) scale(140%);
    }

    /* === #reservation === */
    #reservation .deco-image:nth-of-type(1) {
        width: 1300px;
        left: -550px;
        top: 30%;
        transform: translateY(-12%) rotate(24deg) scale(120%);
    }
    #reservation .deco-image:nth-of-type(2) {
        width: 1050px;
        right: -450px;
        top: 55%;
        transform: translateY(-50%) rotate(10deg) scale(140%) translateX(8%);
    }

    /* Partner Grid */
    #partners {
        background-color: #f9f9f9;
    }

    #partners h2 {
        border-bottom-color: #ff6b6b;
    }

    .partner-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .partner-card {
        perspective: 1200px;
    }

    .partner-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 260px;
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    }

    .partner-card:hover .partner-card-inner {
        transform: rotateY(180deg);
    }

    .partner-card-face {
        position: absolute;
        inset: 0;
        border-radius: 24px;
        overflow: hidden;
        backface-visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
        transition: transform 0.8s ease, box-shadow 0.8s ease;
    }

    .partner-card-front {
        background: linear-gradient(180deg, #e8d8d2 0%, #d6b9b1 100%);
    }

    .partner-card-front img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.8s ease;
        padding: 1.5rem;
    }

    .partner-card:hover .partner-card-front img {
        transform: scale(1.08);
    }

    .partner-card-back {
        transform: rotateY(180deg);
        padding: 1.5rem;
        background: linear-gradient(180deg, #fff5f3 0%, #ffe7e4 100%);
        color: #2f1d1d;
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }

    .partner-card-back h3 {
        margin-bottom: 0.8rem;
        font-size: 1.05rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #be2d2d;
    }

    .partner-card-back p {
        font-size: 0.95rem;
        line-height: 1.55;
        color: #4a3434;
        margin: 0;
    }

    .partner-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    /* =============================================
       Olive Branch Deco - body level, spans Partners + Kontakt
    ============================================= */

    #partners,
    #contact {
        overflow: visible;
    }

    .olive-body-left,
    .olive-body-right {
        position: absolute;
        width: 1300px;
        height: auto;
        opacity: 0.08;
        pointer-events: none;
        z-index: 0;
        mix-blend-mode: multiply;
    }

    .olive-body-left {
        left: -550px;
        transform: translateY(-50%) rotate(18deg);
    }

    .olive-body-right {
        right: -530px;
        transform: translateY(-48%) rotate(-38deg) translateX(3%);
    }

    .language-switcher {
        position: fixed;
        left: 20px;
        bottom: 20px;
        z-index: 1200;
        background: linear-gradient(135deg, #fff3f0 0%, #fff7f5 55%, #fffefb 100%);
        border: 1px solid rgba(255, 107, 107, 0.65);
        border-radius: 999px;
        padding: 0.55rem 0.65rem;
        box-shadow: 0 18px 48px rgba(194, 62, 62, 0.16);
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.2s ease, border-color 0.2s ease, bottom 0.3s ease;
    }

    .language-switcher::before {
        content: attr(data-label);
        position: absolute;
        top: -12px;
        left: 16px;
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #be2d2d;
        background: rgba(255, 255, 255, 0.92);
        padding: 0 0.35rem;
        border-radius: 999px;
    }

    .language-switcher:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 52px rgba(194, 62, 62, 0.22);
    }

    .language-switcher .custom-select {
        position: relative;
    }

    .language-switcher .select-button {
        border: 1px solid rgba(255, 107, 107, 0.8);
        border-radius: 999px;
        padding: 0.75rem 1.4rem 0.75rem 1rem;
        font-size: 0.95rem;
        font-weight: 700;
        color: #5e2424;
        background: linear-gradient(180deg, #ffffff 0%, #fff1f1 100%);
        outline: none;
        min-width: 200px;
        box-shadow: inset 0 4px 14px rgba(255, 107, 107, 0.12);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background-image: linear-gradient(45deg, transparent 45%, rgba(255, 107, 107, 0.9) 45%, rgba(255, 107, 107, 0.9) 55%, transparent 55%), linear-gradient(135deg, transparent 45%, rgba(255, 107, 107, 0.9) 45%, rgba(255, 107, 107, 0.9) 55%, transparent 55%);
        background-position: calc(100% - 1.15rem) calc(50% - 3px), calc(100% - 0.75rem) calc(50% - 3px);
        background-size: 6px 6px;
        background-repeat: no-repeat;
    }

    .language-switcher .select-button:hover,
    .language-switcher .select-button:focus {
        box-shadow: inset 0 4px 16px rgba(255, 107, 107, 0.15), 0 0 0 4px rgba(255, 107, 107, 0.1);
        background: linear-gradient(180deg, #ffffff 0%, #ffe8e8 100%);
    }

    .language-switcher .select-button img {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
    }

    .language-switcher .select-options {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #ffffff 0%, #fff1f1 100%);
        border: 1px solid rgba(255, 107, 107, 0.8);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(194, 62, 62, 0.16);
        list-style: none;
        margin: 0;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 1300;
    }

    .language-switcher .select-options.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .language-switcher .select-options li {
        padding: 0.75rem 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: background 0.2s ease;
        font-size: 0.95rem;
        font-weight: 700;
        color: #5e2424;
    }

    .language-switcher .select-options li:hover {
        background: rgba(255, 107, 107, 0.1);
    }

    .language-switcher .select-options li img {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
    }

    .scroll-top-btn {
        display: none;
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 50%;
        background-color: #ff6b6b;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
        z-index: 1300;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease, bottom 0.3s ease;
        align-items: center;
        justify-content: center;
        margin-top: -2px;
    }

    .scroll-top-btn.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn span {
        vertical-align: middle;
    }

    @media (min-width: 769px) and (max-width: 1350px) {
        /* p5 composition: pull in overhanging elements on laptop screens */
        .p5-composition {
            max-width: 900px;
            height: 520px;
        }

        .p5-theke {
            width: 80%;
            height: 80%;
        }

        .p5-thekeninhalt {
            left: 0;
            bottom: 0;
            width: 34%;
            height: 34%;
        }

        .p5-circle-2 {
            left: 82%;
            width: 195px;
            height: 195px;
        }

        .p5-diamond-1 {
            left: 82%;
            width: 195px;
            height: 195px;
        }

        .p5-circle-3 {
            left: unset;
            right: -3%;
            top: 26%;
            width: 220px;
            height: 220px;
        }
    }

    @media (max-width: 768px) {
        html, body {
            overflow-x: hidden;
        }

        .scroll-top-btn {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        nav {
            padding: 0;
        }

        .nav-container {
            width: 100%;
            padding: 1.5rem 20px;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            height: 100px;
            margin-right: 0;
            padding-left: 0;
            margin-bottom: 0.5rem;
        }

        .burger-menu {
            display: flex;
            position: absolute;
            right: 20px;
            top: 50%;
            z-index: 1001;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        .burger-menu.active {
            transform: translateY(-50%);
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 0;
            flex-direction: column;
            background-color: #5E2028;
            width: 100%;
            text-align: center;
            transition: left 0.3s ease;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            padding: 2rem 0;
            z-index: 1000;
            padding-top: 70px;
        }

        .nav-menu.active {
            left: 0;
        }

        nav ul {
            flex-direction: column;
        }

        nav ul li {
            margin: 0.8rem 0;
            animation: slideIn 0.3s ease forwards;
        }

        .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
        .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
        .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
        .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
        .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
        .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
        .nav-menu.active li:nth-child(7) { animation-delay: 0.7s; }

        .nav-menu li a {
            color: white;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .parallax-section {
            height: 200px;
            background-attachment: scroll;
            background-size: cover;
        }

        #home {
            margin-top: 140px;
            transition: margin-top 0.3s ease;
        }

        /* Mobile parallax: inner bg div takes over */
        .parallax-bg {
            display: block;
            position: absolute;
            top: -60%;
            left: 0;
            width: 100%;
            height: 220%;
            background-attachment: scroll;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 0;
            will-change: transform;
        }

        #parallax2 .parallax-bg {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('imgs/Essen_Lokal/Muscheln.jpeg');
            background-position: 55% center;
        }

        #parallax3 .parallax-bg {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('imgs/Essen_Lokal/Pasta.jpeg');
            background-position: 25% center;
        }

        /* Hide native background on mobile for sections with .parallax-bg */
        #parallax2,
        #parallax3 {
            background-image: none !important;
        }

        #parallax2::before,
        #parallax3::before {
            display: none;
        }

        .parallax-content h1,
        .parallax-content h2 {
            font-size: 1.8rem;
        }

        .content-section {
            padding: 40px 15px;
        }

        .partner-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .partner-card-inner {
            min-height: 340px;
        }

        .partner-card-back {
            padding: 1.8rem;
        }

        .partner-card-back h3 {
            font-size: 1rem;
        }

        .partner-card-back p {
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* Mobile: linkes Basil-Bild ausblenden */
        .deco-image:nth-of-type(1) {
            display: none;
        }





        #contact {
            padding-bottom: 100px;
        }

        #partners,
        #contact {
            overflow: hidden;
        }

        /* Kein overflow-x auf einzelnen Sections setzen –
           html/body overflow-x: clip oben reicht aus, damit
           position:fixed (Cookie-Banner) korrekt bleibt */
        .content-section,
        .parallax-section {
            max-width: 100%;
        }

        #parallax5 {
            max-width: 100%;
        }

        .olive-body-left,
        .olive-body-right {
            display: none;
        }

        #parallax4 {
            height: 260px;
            min-height: 260px;
        }

        #parallax3 {
            background-position: 25% 15%;
            height: 200px;
            min-height: 200px;
        }

        #parallax2 {
            background-position: 55% 20%;
            height: 200px;
            min-height: 200px;
        }

        #parallax5 {
            padding: 20px 10px 20px 10px;
            min-height: unset;
            overflow: visible;
        }

        /* Mobile p5: Skizzen-Layout
           - Theke oben (volle Breite)
           - Darunter: Kreis links | ThekeInhalt mitte | Kreis rechts
           - Ganz unten: Kreis mittig
        */
        .p5-composition {
            position: relative;
            height: 430px;
            display: block;
            overflow: visible;
        }

        .p5-theke,
        .p5-thekeninhalt,
        .p5-diamond-1,
        .p5-circle-2,
        .p5-circle-3 {
            transition: none;
        }
        .p5-theke:hover { transform: none; }
        .p5-diamond-1:hover { transform: none; }
        .p5-circle-2:hover { transform: none; }
        .p5-thekeninhalt:hover { transform: translateX(-50%); }
        .p5-circle-3:hover { transform: translateX(-50%); }

        .p5-theke {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 165px;
            border-radius: 8px;
        }

        .p5-thekeninhalt {
            position: absolute;
            width: 38%;
            height: 95px;
            left: 50%;
            top: 180px;
            transform: translateX(-50%);
            bottom: unset;
            border-radius: 8px;
        }

        .p5-diamond-1 {
            position: absolute;
            width: 95px;
            height: 95px;
            left: 2%;
            top: 180px;
            bottom: unset;
            border-radius: 50%;
        }
        .p5-diamond-1 img { width: 100%; height: 100%; }

        .p5-circle-2 {
            position: absolute;
            width: 95px;
            height: 95px;
            right: 2%;
            left: unset;
            top: 180px;
            border-radius: 50%;
        }

        .p5-circle-3 {
            position: absolute;
            width: 110px;
            height: 110px;
            left: 50%;
            transform: translateX(-50%);
            top: 295px;
            right: unset;
            border-radius: 50%;
        }
    }
