
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            overflow-x: hidden !important;

            color: #333;
            cursor: url('x-einzeln.svg') 16 16, auto;
        }

        @media (max-width: 576px) {
            .announcement-bar {
                font-size: 12px;
                padding: 8px 0;
            }
            header {
                top: 20px; /* Adjust for smaller announcement bar height */
            }
        }

        /* Announcement Bar */
        .announcement-bar {
            background-color: #ff0000; /* Red background */
            color: white;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001; /* Above header */
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Preloader Styling */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.3s ease-out;
        }

        #preloader img {
            width: 150px;
            animation: zoomIn 1s ease-in-out forwards;
        }

        @keyframes zoomIn {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(2); opacity: 0.8; }
            100% { transform: scale(3); opacity: 0; }
        }

        #main-content {
            opacity: 0;
            transition: opacity 0.5s ease-in;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #2F4F4F;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3E5554;
        }

        /* Firefox Scrollbar */
        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #2F4F4F #f1f1f1;
        }

        /* Standard Container */
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 50px 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 57%, rgba(0, 0, 0, 0) 100%);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: black;
            padding: 36px 0;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .left-nav, .right-nav {
            display: flex;
            gap: 30px;
        }

        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }

        .logo {
            height: 85px;
            transition: all 0.3s ease;
        }

        header.scrolled .logo {
            height: 60px;
        }

        .logo-text {
            color: white;
            font-size: 12px;
            margin-top: 5px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo-subtext {
            color: white;
            font-size: 10px;
            margin-top: 2px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 300;
        }

        nav a {
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 12px;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background-color: #4D6E6E;
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #4D6E6E;
        }

        nav a:hover:after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 700px;
            width: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 100%, rgba(0, 0, 0, 0) 100%);
            z-index: 0;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-content {
            color: white;
            z-index: 1;
            text-align: center;
            max-width: 100%;
            padding: 20px 0;
        }

        .hero-image-container {
            max-width: 30%;
            z-index: 1;
        }

        .hero-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-image:hover {
            transform: scale(1.02);
        }

        .countdown-banner {
            background-color: rgba(77, 110, 110, 0.7);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
            line-height: 1.5;
            letter-spacing: 1px;
            text-align: left;
        }

        .countdown-banner span {
            display: inline-block;
            text-align: left;
        }

        .hero-content h1 {
            font-size: 60px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 30px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .hero-content h1 strong {
            font-weight: 700;
        }

        .hero-content h1 .dot {
            color: #4D6E6E;
        }

        .hero-content p, .hero-content ul li {
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.6;
            letter-spacing: 0.5px;
        }

        .hero-content ul {
            padding-left: 0;
            list-style: none;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 5px;
            text-align: center;
        }

        .btn-primary {
            background-color: #4D6E6E;
            color: white;
            border: none;
            box-shadow: 0 0 10px rgba(77, 110, 110, 0.5);
        }

        .popup-content {
            background-color: white;
            color: #333;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            animation: fadeIn 0.3s ease-in-out;
        }

        .popup-content img {
            max-width: 150px;
            height: auto;
            margin-bottom: 10px;
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #333;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .popup-close:hover {
            color: #4D6E6E;
        }

        @keyframes fadeIn {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }

        .btn-primary:hover {
            background-color: #3E5554;
            box-shadow: 0 0 20px rgba(77, 110, 110, 0.8);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 1px solid white;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        /* Hero Lightbox */
        .hero-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            overflow: auto;
            flex-direction: column;
            gap: 20px;
        }

        .hero-lightbox img {
            max-width: 90%;
            max-height: 70%;
            object-fit: contain;
            border-radius: 5px;
        }

        .hero-lightbox .menu-download {
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 5px;
            background-color: #4D6E6E;
            color: white;
            border: none;
            box-shadow: 0 0 10px rgba(77, 110, 110, 0.5);
        }

        .hero-lightbox .menu-download:hover {
            background-color: #3E5554;
            box-shadow: 0 0 20px rgba(77, 110, 110, 0.8);
            transform: translateY(-2px);
        }

        .lightbox-close {
            position: fixed;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 2100;
            transition: color 0.3s ease;
        }

        .lightbox-close:hover {
            color: #4D6E6E;
        }

        /* About Section */
        .about-section {
            padding: 50px 0;
            background-color: white;
        }

        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            filter: grayscale(1);
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            loading: lazy;
        }

        .about-text-content {
            flex: 1;
        }

        .section-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #4D6E6E;
            margin-bottom: 10px;
        }

        .about-title {
            font-size: 48px;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 700;
            color: #000;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .about-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-text {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .about-text.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Menu Section */
        .menu-section {
            padding: 50px 0;
            background-color: black;
            position: relative;
            overflow: hidden;
        }


        .menu-card {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 1;
        }
.menu-image {
    /* width: 100%;  <-- ENTFERNEN ODER AUSKOMMENTIEREN */
    /* height: auto; <-- ENTFERNEN ODER AUSKOMMENTIEREN */
    max-width: 100%; /* Als Sicherheitsnetz hinzufügen */
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

        .menu-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
        }

        .menu-download {
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 5px;
            background-color: #4D6E6E;
            color: white;
            border: none;
            box-shadow: 0 0 10px rgba(77, 110, 110, 0.5);
        }

        .menu-download:hover {
            background-color: #3E5554;
            box-shadow: 0 0 20px rgba(77, 110, 110, 0.8);
            transform: translateY(-2px);
        }

        /* Drinks Section */
        .drinks-section {
            padding: 50px 0;
            background-color: black;
            position: relative;
            overflow: hidden;
        }

        .drinks-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: right center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

        .drinks-cards {
            display: flex;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .drinks-card {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: anchor-center;
            gap: 30px;
        }

        .drinks-image {
            width: auto;
            height: 500px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            loading: lazy;
        }

        .drinks-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            overflow: auto;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 5px;
        }

        /* Directions Section */
        .directions-section {
            padding: 120px 0;
            color: white;
            background: black;
        }

        .directions-title {
            font-size: 48px;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 700;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .directions-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .directions-content {
            display: flex;
            gap: 40px;
            align-items: center;
            opacity: 0;
            color:white;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .directions-content.visible {
            opacity: 1;
            color: white;
            transform: translateY(0);
        }

        section#gallery {
    overflow: hidden !important;
}
        .directions-map {
            flex: 1;
            height: 500px;
            border-radius: 10px;
            color: white;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .directions-info {
            flex: 1;
        }

        .directions-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
        }

        .directions-info p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: lightgray;
        }

        .directions-info ul {
            list-style: none;
            padding-left: 0;
        }

        .directions-info ul li {
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: lightgray;
        }

        .directions-info ul li i {
            color: #4D6E6E;
            width: 20px;
            text-align: center;
            font-size: 16px;
        }

        /* Events Section */
        .events-section {
            padding: 50px 0;
            background-color: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .events-content {
            display: flex;
            gap: 40px;
            align-items: stretch;
            flex-wrap: wrap;
        }

        .events-image {
            flex: 1;
            max-width: 500px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .events-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 10px;
            loading: lazy;
        }

        .events-text {
            flex: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .events-text p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #333;
        }

        .events-gallery {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .gallery-section .section-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #4D6E6E;
            margin-bottom: 10px;
            text-align: center;
        }

        .gallery-section h2 {
            font-size: 48px;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 700;
            color: #000;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .gallery-section h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .swiper-container {
            width: 100%;
            padding: 40px 0;
            position: relative;
        }

        .swiper-slide {
            text-align: center;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 1; /* Default opacity for non-active slides */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .swiper-slide-active,
        .swiper-slide-duplicate-active {
            opacity: 1; /* Full opacity for active slide */
            transform: scale(1.05); /* Slightly scale up active slide */
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #4D6E6E;
            background: rgba(255, 255, 255, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: background 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1; /* Always visible */
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-pagination-bullet {
            background: #4D6E6E;
            opacity: 0.5;
            width: 10px;
            height: 10px;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #4D6E6E;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background-color: #2F4F4F;
            color: white;
            text-align: center;
        }

        .newsletter-section .section-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #4D6E6E;
            margin-bottom: 10px;
        }

        .newsletter-section h2 {
            font-size: 48px;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 700;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .newsletter-section h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .newsletter-section form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-section input[type="email"],
        .newsletter-section input[type="submit"] {
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
        }

        .newsletter-section input[type="email"] {
            background-color: #fff;
            color: #333;
        }

        .newsletter-section input[type="submit"] {
            background-color: #4D6E6E;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-section input[type="submit"]:hover {
            background-color: #3E5554;
        }

        .newsletter-section .error {
            color: #ff4444;
            font-size: 14px;
        }

        .newsletter-section .success {
            color: #44ff44;
            font-size: 14px;
        }

        /* Footer */
        .footer {
            background: black;
            color: #fff;
            padding: 120px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .footer-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #4D6E6E;
        }

        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        /* Popup Styling */
        .announcement-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        @media only screen and (max-width: 576px) {
            .popup-content {
                max-width: 90% !important;
                padding: 20px !important;
                font-size: 14px !important;
            }
            .popup-content img {
                max-width: 120px;
            }
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: #4D6E6E;
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social a {
            color: #fff;
            font-size: 20px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .footer-social a:hover {
            transform: scale(1.2);
            color: #4D6E6E;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 80px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 10px;
            color: #666;
            letter-spacing: 1px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            loading: lazy;
        }

        .footer-logo:hover {
            opacity: 1;
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #4D6E6E;
        }

        .legal-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 15px;
        }

        .legal-links a {
            font-size: 10px;
            color: #777;
        }

        /* Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            z-index: 1001;
            width: 30px;
            height: 20px;
            position: relative;
        }

        .menu-toggle span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transition: all 0.25s ease-in-out;
        }

        .menu-toggle span:nth-child(1) {
            top: 0;
        }

        .menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
            top: 10px;
        }

        .menu-toggle span:nth-child(4) {
            top: 20px;
        }

        .menu-toggle.active span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        .menu-toggle.active span:nth-child(2) {
            transform: rotate(45deg);
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .menu-toggle.active span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        /* Media Queries */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 50px;
            }
            .about-title, .directions-title {
                font-size: 42px;
            }
            .container {
                max-width: 960px;
            }
            .swiper-slide img {
                height: 350px;
            }
        }

        @media (max-width: 992px) {
            .about-content, .directions-content, .events-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .about-image img, .events-image img {
                max-width: 100%;
                position: static;
                height: auto;
            }
            .events-image {
                width: 100%;
                height: 300px;
            }
            .directions-map {
                width: 100%;
                height: 400px;
            }
   
            .drinks-cards {
                flex-direction: column;
            }
            .container {
                max-width: 720px;
            }
            .swiper-slide img {
                height: 100%;
            }
        }

        @media (max-width: 768px) {
            .countdown-banner {
                font-size: 15px;
            }
            .hero {
                height: auto;
                min-height: 600px;
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }
            .hero > .container > div {
                flex-direction: column;
            }
            .hero-content {
                margin-top: 20%;
                max-width: 100%;
                order: 1;
            }
            .hero-image-container {
                max-width: 100%;
                order: 2;
                margin-top: 20px;
            }
            .hero-content h1 {
                font-size: 48px;
            }
            .countdown-banner {
                width: 100%;
            }
            .cta-buttons {
                justify-content: flex-start;
            }
            .menu-toggle {
                display: block;
                z-index: 9999999;
            }
            .left-nav, .right-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                padding: 100px 30px 30px;
                transition: all 0.5s ease;
                z-index: 999;
                gap: 25px;
            }
            .left-nav.active {
                left: 0;
                background-color: black;
                z-index: 99999;
            }
            .right-nav.active {
                left: 20%;
                background-color: black;
            }
            .about-title, .directions-title {
                font-size: 36px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .footer-social {
                justify-content: flex-start;
            }
            .menu-section, .drinks-section, .about-section, .directions-section, .events-section, .jobs-section, .newsletter-section, .gallery-section {
                padding: 80px 0;
            }
            .menu-card, .drinks-card {
                gap: 20px;
            }
            .menu-image, .drinks-image {
                max-width: 100%;
            }
            .lightbox img, .hero-lightbox img {
                max-width: 95%;
                max-height: 80%;
            }
            .container {
                max-width: 540px;
            }
            .swiper-slide img {
                height: 100%;
            }
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            header {
                padding: 36px 0;
            }
            header.scrolled {
                padding: 25px 0;
            }
            .logo {
                height: 50px;
            }
            header.scrolled .logo {
                height: 45px;
            }
            .hero-content h1 {
                font-size: 36px;
            }
            .countdown-banner {
                font-size: 12px;
                padding: 12px 20px;
            }
            .btn, .menu-download {
                width: 100%;
                margin-bottom: 10px;
            }
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .newsletter-section h2, .gallery-section h2 {
                font-size: 28px;
            }
            .about-title, .directions-title {
                font-size: 28px;
            }
            .about-section, .directions-section, .menu-section, .drinks-section, .events-section, .jobs-section, .newsletter-section, .gallery-section {
                padding: 80px 0;
            }
            .footer {
                padding: 80px 0 30px;
            }
            .container {
                max-width: 100%;
                padding: 0 5%;
            }
            .directions-map {
                height: 300px;
            }
            .events-image {
                height: 200px;
            }
            .swiper-slide img {
                height: 100%;
            }
            .swiper-container {
                padding: 20px 0;
            }
        }

        @media (hover: none) {
            body {
                cursor: auto;
            }
        }

        .menu-card {
    display: flex;
    gap: 40px; /* Abstand zwischen den Karten */
    flex-wrap: nowrap; /* Verhindert das Umbrechen auf größeren Bildschirmen */
    justify-content: center; /* Zentriert die Karten */
}

.menu-card > div {
    flex: 1; /* Beide Karten teilen den Platz gleichmäßig */
    max-width: 500px; /* Maximale Breite pro Karte */
    text-align: center;
}

.menu-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-download {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    background-color: #4D6E6E;
    color: white;
    border: none;
    margin-top: 10px;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
    .menu-card {
        flex-wrap: wrap; /* Auf kleinen Bildschirmen untereinander */
        gap: 20px;
    }
    .menu-card > div {
        max-width: 100%; /* Volle Breite auf kleinen Bildschirmen */
    }
}

/* Stile für die mobile Speisekarten-Vorschau */
.mobile-preview {
    display: none; /* Standardmäßig versteckt */
    width: 100%;   /* Nimmt die volle Breite ein */
}

/* Media Query für mobile Geräte (bis 768px Breite) */
@media (max-width: 768px) {
    .desktop-preview {
        display: none !important; /* Verstecke die Desktop-Vorschau */
    }
    .mobile-preview {
        display: block; /* Zeige die mobile Vorschau an */
    }
}


