/* Basis-Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: var(--text-color);
}

/* Basis-Variable in :root definieren */
:root {
    --main-color: #FF8A00; /* Standard Hauptfarbe */
    --hover-color: #E67600; /* Standard Hover-Farbe */
    --text-color: #FFFFFF;  /* Standard Textfarbe */
    --menucardbackground-color: #FFFFFF;  /* Standard Textfarbe */
}




/* Header-Container */


header {
    position: sticky; /* Sticky Position */
    top: 0; /* Bleibt oben fixiert */
    z-index: 1000; /* Höher als alle anderen Elemente */
   background-color: #000; /* Schwarzer Hintergrund */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Leichte Schatten */
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out; /* Sanfter Effekt */
}

/* Logo */
header .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Abstand zwischen Icon und Text */
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

header .logo:hover {
    color: var(--hover-color);; /* Hover-Effekt für den Link */
}

header .logo-icon {
    width: 40px; /* Icon-Größe */
    height: 40px;
    border-radius: 50%; /* Rundes Icon */
}



header .desktop-nav ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

header .desktop-nav ul li a:hover {
    color: var(--main-color);;
    background-color: rgba(255, 255, 255, 0.1); /* Dezenter Hover-Effekt */
}



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

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
/* "Online Bestellen"-Button */
header .bestellen-btn {
    background-color: #FF0000; /* Auffälliges Rot */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

header .bestellen-btn:hover {
    background-color: #CC0000; /* Dunkleres Rot beim Hover */
}

/* Hamburger */
.hamburger {
    display: none; /* Standardmäßig ausgeblendet */
    font-size: 2rem;
    cursor: pointer;
    color: white;
    position: absolute;
    right: 20px; /* Angepasste Position für responsive Ansicht */
    top: 1rem;
    z-index: 1001;
}

/* Sidebar */
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: #000;
    z-index: 1001;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.sidebar.active {
    display: block;
    transform: translateX(0);
}

.sidebar .menu a.active {
    background-color: var(--main-color);; /* Farbe für aktiven Link */
    font-weight: bold; /* Optional: Fettschrift */
    color: #ffffff; /* Textfarbe */
}


.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.sidebar .close-sidebar {
    align-self: flex-end;
    background-color: var(--main-color);;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero-Bereich */
.hero {
    position: relative;
    height: 100vh; /* Hero-Bereich nimmt die gesamte Höhe des Viewports ein */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-size: cover; /* Bild wird proportional vergrößert, um den Bereich zu füllen */
    background-position: center; /* Bild wird zentriert */
    background-repeat: no-repeat; /* Verhindert Wiederholungen des Bildes */
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Text-Schatten für bessere Lesbarkeit */
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px; /* Textbreite begrenzen */
    color: rgba(255, 255, 255, 0.9); /* Dezentes Weiß */
}

.hero a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: var(--main-color);; /* Orange */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero a:hover {
    background-color: var(--hover-color);;
    transform: scale(1.05); /* Leichter Zoom-Effekt */
}


/* Canvas-Off (Gallery) */
.canvas-off {
    display: none;
    position: absolute; /* Ändert fixed zu absolute, um Scrolling zu ermöglichen */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; /* Stellt sicher, dass der Canvas die gesamte Bildschirmhöhe einnimmt */
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    overflow-y: auto; /* Scrollen erlauben */
    padding: 2rem 1rem 3rem; /* Zusätzlicher Platz unten */
    box-sizing: border-box;
}

.canvas-off.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out; /* Schönes Einblenden */
}

.gallery-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2rem; /* Platz für untere Bilder */
}

.gallery-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--main-color);;
}

.gallery-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem; /* Platz am unteren Rand */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Zoom-Effekt beim Hover */
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    opacity: 1; /* Immer sichtbar */
    transform: translateY(0); /* Initial sichtbar */
    transition: none; /* Keine Animation */
}

/* Schließen-Button */
.close-btn {
    position: absolute; /* Fixiert wird geändert, damit es im Scroll-Layout funktioniert */
    top: 15px;
    right: 20px;
    background-color: var(--main-color);;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px; /* Kein Rundformat mehr */
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: var(--hover-color);;
}

@media (max-width: 768px) {
    .close-btn {
        top: 10px; /* Position angepasst */
        right: 10px;
        padding: 8px 12px;
    }

    .gallery-content h2 {
        margin-top: 40px; /* Platz für den Schließen-Button */
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Menücard-Bereich */
.menu-card {
    background: linear-gradient(135deg, #ffffff, var(--menucardbackground-color));
    padding: 50px 20px;
    margin: 0px 0; /* Verringert den weißen Rand */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    overflow: hidden; /* Entfernt unerwünschte Inhalte außerhalb des Containers */
}

/* Überschrift und Beschreibung */
.menu-card-header h2 {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.menu-card-header .menu-card-description {
    font-size: 1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

/* Menü-Grid */
.menu-card-grid {
    display: flex;
    justify-content: center; /* Zentriert die Elemente */
    gap: 40px; /* Reduziert den Abstand zwischen den Karten */
    flex-wrap: wrap;
    padding: 20px; /* Fügt etwas Innenabstand hinzu */
    max-width: 1200px; /* Begrenzt die Gesamtbreite */
    margin: 0 auto; /* Zentriert das Grid */
}

/* Menü-Karten */
.menu-card-item {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 12px; /* Abgerundete Ecken */
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 250px; /* Erhöht die Breite der Karten */
    max-width: 100%; /* Passt sich an kleine Bildschirme an */
}

.menu-card-item img {
    width: 60px; /* Größere Icons */
    height: 60px;
    margin-bottom: 15px;
    object-fit: cover;
}

.menu-card-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--main-color); /* Orange */
}
.menu-card-item:hover {
    transform: scale(1.1); /* Größere Skalierung bei Hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.menu-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Icon-Stil */
.menu-card-icon img {
    width: 60px; /* Kleinere Größe */
    height: 60px;
    margin-bottom: 10px;
    object-fit: cover; 
}

/* Text-Stil der Karte */
.menu-card-content h3 {
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.menu-card-content .menu-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Menü Hintergrund Overlay */
.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: url('your-background-image.jpg') center/cover no-repeat; */
    opacity: 0.05; /* Leicht transparenter Hintergrund */
    z-index: -1;
}






/* Responsivität */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: block; /* Hamburger-Button nur in mobiler Ansicht */
        right: 35px; /* Position angepasst */
    }

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

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

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none; /* Hamburger-Button in Desktop-Ansicht ausgeblendet */
    }
}

/* Footer Styles */
.footer {
    background-color: #b40001; /* Rot, wie im Screenshot */
    color: #fff;
    padding: 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: center; /* Zentriert die Inhalte horizontal */
    align-items: center; /* Zentriert die Inhalte vertikal */
    flex-wrap: wrap; /* Ermöglicht Umbruch auf mobilen Geräten */
    gap: 1rem; /* Abstand zwischen Elementen */
    text-align: center; /* Zentriert den Text */
}

.footer-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f8d7da; /* Hellerer Farbton bei Hover */
}

.footer-logo {
    width: 160px; /* Größe des Logos */
    cursor: pointer;
}
/* Info Section Styling */
.info-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.info-card h3 {
    color: var(--main-color);;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.info-card p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.contact-link {
    color: var(--main-color);;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.social-link i {
    font-size: 1.5rem;
}

.social-link:hover {
    color: var(--main-color);;
}

.section-title {
	    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--main-color);;
}

/* Entfernen von unnötigen Platzhaltern */
.info-section .placeholder {
    display: none;
}


/* Online Bestellen Call-to-Action */
.cta-section {
    background-color: #ac0011;
    color: #fff;
    text-align: center;
    padding: 3rem 1.5rem; /* Erhöht die obere und untere Polsterung */
    margin-bottom: 3rem; /* Fügt mehr Abstand unterhalb des roten Bereichs hinzu */
}


.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    background-color: #fff;
    color: var(--main-color);;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--hover-color);;
    color: #fff;
}
/* Scroll-to-Top Button */
.to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color);;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

.to-top-btn:hover {
    background-color: var(--hover-color);;
}

.to-top-btn.show {
    opacity: 1;
    visibility: visible;
}
#loader {
transition: opacity 0.5s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--main-color);;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Reservieren und Online Bestellen Buttons */
.bestellen-btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}



.bestellen-btn {
    background-color: #b40001;
}

.bestellen-btn:hover {
    background-color: #b40001;
}

/* Mobile-Menü-Anpassung */
@media (max-width: 768px) {
    .sidebar-content ul li {
        margin-bottom: 15px; /* Abstand zwischen den Menüeinträgen */
    }

    .sidebar-content ul li a {
        font-size: 1.2rem; /* Größere Schrift für bessere Lesbarkeit */
        padding: 10px 0; /* Zusätzlicher Innenabstand */
    }

    .bestellen-btn {
        margin-top: 20px; /* Abstand zum vorherigen Menüpunkt */
        padding: 15px; /* Größerer Innenabstand */
        font-size: 1.2rem; /* Einheitlich mit den Menüeinträgen */
        background-color: #FF0000; /* Auffällige Farbe für den Button */
        border-radius: 5px;
        text-align: center;
        display: block; /* Volle Breite */
        width: 90%; /* Zentrierte Darstellung */
        margin-left: auto;
        margin-right: auto;
    }

    .bestellen-btn:hover {
        background-color: #CC0000; /* Hover-Effekt */
    }
}

.delivery-zones {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.delivery-zones h2 {
    text-align: center;
    color: var(--main-color);;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.zone-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zone-row {
    display: flex;
    justify-content: space-between;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.zone-row:hover {
    background-color: #FFFAE6; /* Hellgelb beim Hover */
}

.city {
    font-weight: bold;
    color: #333;
}

.minimum {
    font-size: 0.9rem;
    color: #666;
}

.info-section {
        text-align: center;
        padding: 40px;
        background-color: #fff;
    }

    .info-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .info-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .info-item:hover {
        transform: translateY(-5px);
    }

    .info-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

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

    .canvas-off.active {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .canvas-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    max-height: 80vh;
}

    .canvas-content ul {
        list-style: none;
        padding: 0;
    }

    .canvas-content ul li {
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: #fff;
    }
	/* Zentrierung für die Highlights-Sektion */
.highlights {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontal zentriert */
    text-align: center; /* Text zentriert */
    margin: 0 auto; /* Zentrierung der gesamten Sektion */
    padding: 20px;
}

.highlight-grid {
    display: flex;
    justify-content: center; /* Karten zentrieren */
    gap: 20px; /* Abstand zwischen den Karten */
    flex-wrap: wrap; /* Umbruch auf kleineren Bildschirmen */
    max-width: 800px; /* Begrenzte Breite */
}


 /* Highlight-Karten */
.highlight-item {
    width: 300px; /* Einheitliche Breite */
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

    /* Canvas-Stile */
.canvas {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.canvas.active {
    display: flex;
}

.canvas-content {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}


    .canvas-content h2 {
        color: var(--main-color);;
        margin-top: 0;
    }

    .canvas-content button {
        background: var(--main-color);;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        float: right;
    }

    .canvas-content button:hover {
        background: #e07a00;
    }

    .canvas-content ul {
        list-style: none;
        padding: 0;
    }

    .canvas-content ul li {
        margin: 5px 0;
        padding: 5px 0;
        border-bottom: 1px solid #ddd;
    }

    /* Responsive Stile */
    @media (max-width: 768px) {
        .highlight-grid {
            flex-direction: column;
            align-items: center;
        }

        .highlight-item {
            width: 90%;
        }
    }
	
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hours-table th, .hours-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.hours-table th {
    background-color: var(--main-color);;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.hours-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.hours-table tr:hover {
    background-color: #FFFAE6;
}

.hours-table td {
    font-size: 16px;
    color: #333;
}

.hours-table td br {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hours-table th, .hours-table td {
        font-size: 14px;
        padding: 10px 12px;
    }
}



.close-btn {
    background-color: var(--main-color);;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-btn:hover {
    background-color: var(--hover-color);;
}

#canvasGallery {
    overflow-y: auto; /* Ermöglicht das vertikale Scrollen */
    max-height: 100%; /* Begrenzt die Höhe auf die Bildschirmgröße */
}

.canvas-off.active {
    display: flex; /* Sichtbar, wenn aktiv */
    flex-direction: column; /* Inhalte vertikal ausrichten */
    justify-content: flex-start; /* Oben beginnen */
    align-items: center; /* Inhalte zentrieren */
    overflow-y: auto; /* Scrollen aktivieren */
    max-height: 100vh; /* Maximale Höhe auf den Viewport beschränken */
}

.menu-category h3 {
    font-size: 1.2rem;
    color: var(--main-color);;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--main-color);;
    padding-bottom: 5px;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    color: #333;
}

.menu-item-name {
    flex: 1;
    text-align: left;
    padding-right: 10px;
}

.menu-item-price {
    font-weight: bold;
    text-align: right;
    color: var(--main-color);;
    min-width: 70px;
}

.menu-category:last-child .menu-list li:last-child {
    border-bottom: none; /* Entfernt die letzte Linie */
}

.menu-list li:hover {
    background-color: #FFFAE6;
}

@media (max-width: 768px) {
    .menu-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-item-price {
        text-align: left;
        margin-top: 5px;
    }
}

/* Preise - neutrale Farbe */
.menu-item-price {
    font-weight: normal;
    text-align: right;
    color: #333; /* Dunkelgrau für eine neutrale Darstellung */
    min-width: 70px;
}

/* "Jetzt online bestellen"-Button Styling */
.btn-order {
    display: inline-block;
    text-align: center;
    background-color: var(--main-color);; /* Auffälliges Orange */
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px; /* Abstand zur Liste */
}

.btn-order:hover {
    background-color: #FF6A00; /* Etwas dunkleres Orange für den Hover */
    transform: translateY(-2px); /* Leichtes Anheben beim Hover */
}

.btn-order:active {
    transform: translateY(0); /* Zurücksetzen beim Klick */
    background-color: var(--main-color);; /* Ursprüngliche Farbe */
}

.highlight-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.highlight-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

.highlight-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.highlight-description {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin: 10px 0 20px;
    line-height: 1.5;
}

.highlight-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
}

.highlight-item h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

.highlight-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.logo img {
    width: 50px; /* Die Breite des Logos */
    height: 50px; /* Die Höhe des Logos */
    border-radius: 25%; /* Macht das Logo rund */
    object-fit: cover; /* Sorgt für ein schönes Zuschneiden */
    border: 2px solid var(--main-color);; /* Optional: Ein Rahmen um das Logo */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optional: Schatten für besseren Effekt */
    margin-right: 10px; /* Abstand zum Text */
}

/* Menü-Bereich */
.menu-section {
    margin: 30px auto;
    padding: 20px;
    max-width: 900px; /* Breiterer Bereich */
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);;
    margin-bottom: 10px;
}

.menu-category {
    margin-bottom: 30px;
    padding: 10px 15px;
    border-bottom: 2px solid var(--main-color);;
}

.category-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);;
    margin-bottom: 10px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Abstand zwischen den Menüeinträgen */
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Entfernt den Box-Stil */
    background-color: transparent; /* Keine Hintergrundfarbe */
    border-radius: 0; /* Keine abgerundeten Ecken */
    box-shadow: none; /* Keine Schatten */
    border-bottom: 1px solid #ddd; /* Optional: fügt nur eine Linie zwischen den Elementen hinzu */
}

.menu-item-row:last-child {
    border-bottom: none; /* Entfernt die letzte Linie */
}

.menu-item-row:hover {
    background-color: transparent; /* Entfernt den Hover-Effekt */
}


    .category-description {
        font-style: italic;
        color: #666;
        margin-bottom: 10px;
    }

    .menu-table {
        width: 100%;
        border-collapse: collapse;
    }

   /* Menü-Artikel: Hintergrund und Hover-Effekte entfernen */
.menu-table tr {
    border-bottom: 1px solid #ddd; /* Nur die Trennungslinie beibehalten */
}
   .menu-table td {
    padding: 8px 5px;
    vertical-align: middle; /* Mittige Ausrichtung */
    background-color: transparent; /* Kein Hintergrund */
    box-shadow: none; /* Schatten entfernen */
    transition: none; /* Keine Übergänge */
}

.menu-table tr:hover {
    background-color: transparent; /* Keine Hover-Hintergrundfarbe */
}
    .item-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    flex: 1; /* Name nimmt den Hauptplatz ein */
}

.item-prices {
    font-size: 14px;
	 font-family: cursive;
    color: #333;
    text-align: right;
    min-width: 150px; /* Breite für Preise */
}

    .menu-table tr:last-child {
        border-bottom: none;
    }
.hidden {
    display: none !important;
}

.scroll-hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: fadeInOut 3s infinite; /* Animation, die das Element aufblitzen lässt */
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.scroll-hint.hidden {
    display: none;
}

.about-us-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.about-us-container h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-us-container .subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.about-us-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.about-us-image {
    flex: 1 1 40%;
    max-width: 400px;
    border-radius: 50%;
    overflow: hidden;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.about-us-text {
    flex: 1 1 50%;
    text-align: left;
    max-width: 600px;
}

.about-us-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.about-us-text p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.load-more-btn {
    background-color: #ff8c00; /* Auffällige Farbe */
    color: white;
    font-size: 1.2em; /* Größere Schrift */
    padding: 15px 25px; /* Mehr Padding für größere Fläche */
    border: none;
    border-radius: 8px; /* Abgerundete Ecken */
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; /* Für Animation */
	 animation: pulse 2s infinite;
}

.load-more-btn:hover {
    background-color: #ff6500; /* Hover-Farbe */
    transform: scale(1.05); /* Leichte Vergrößerung */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

.load-more-btn:focus {
    outline: none;
}

.menu-loader {
    text-align: center;
    margin-top: 30px; /* Zusätzlicher Abstand */
	text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.75);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }
}
#loading-indicator {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    color: var(--main-color);;
}

.zones-title {
    font-size: 24px;
    font-weight: bold;
    color: #FF5722;
    margin-bottom: 20px;
    text-align: center;
}

.zones-container {
    margin-top: 10px;
}

.zone-group {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #FF5722;
    border-radius: 8px;
    background-color: #FFF8F0;
}

.zone-group-title {
    font-size: 18px;
    font-weight: bold;
     color: var(--main-color);;
    margin-bottom: 10px;
}

.zone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zone-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 1px solid #FF5722;
}

.zone-item:last-child {
    border-bottom: none;
}

.zone-name {
    font-weight: bold;
    color: #333;
}

.zone-zipcode {
    color: #777;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}

.close-btn:hover {
    background: #E64A19;
}

.ratings-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.ratings-overview {
    text-align: center;
    margin-bottom: 30px;
}

.average-rating {
    background-color: #d32f2f;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.rating-summary {
    font-size: 1.5em;
}

.rating-value {
    font-size: 3em;
    font-weight: bold;
}

.stars {
    display: inline-block;
    margin: 10px 0;
}

.stars .star {
    font-size: 1.2em;
    color: #ccc;
}

.stars .star.filled {
    color: #ffd700; /* Gold */
}

/* Container für Bewertungen */
.latest-ratings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Button-Bereich unterhalb */
.ratings-actions {
    text-align: center;
    margin-top: 20px;
}


/* Bewertungskarte */
.rating-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-card h4 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars .star {
    font-size: 1.2em;
    color: #ccc;
}

.rating-stars .star.filled {
    color: #ffd700;
}

.rating-score {
    font-size: 0.9em;
    color: #555;
    margin-left: 5px;
}

.rating-card p {
    font-size: 1em;
    color: #666;
    margin: 0 0 10px;
}

.rating-card small,
.review-date {
    font-size: 0.8em;
    color: #999;
}

/* Hover-Effekt für Sterne */
.stars .star:hover {
    transform: scale(1.2);
    transition: transform 0.2s;
}

/* Responsive Anpassung für Tablets & Mobile */
@media (max-width: 768px) {
    .latest-ratings {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
        scrollbar-width: thin; /* Firefox */
    }

    .latest-ratings::-webkit-scrollbar {
        height: 6px;
    }

    .latest-ratings::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.2);
        border-radius: 3px;
    }

    .rating-card {
        flex: 0 0 85%; /* Mobile: fast volle Breite */
        max-width: 300px;
    }
}

/* "Mehr anzeigen"-Button */
.load-more-btn {
    padding: 12px 25px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more-btn:hover {
    background-color: var(--hover-color);
}


/* Vollbild-Overlay */
#modernPopup {
  display: none; /* wird per JS eingeblendet */
  position: fixed;
  inset: 0; /* top: 0; left: 0; right: 0; bottom: 0; */
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* wichtig für mobile Geräte */
  overflow-y: auto; /* SCROLLBAR falls nötig */
}

/* Popup-Box */
#modernPopup .popup-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  padding: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #222;
  position: relative;
  animation: fadeIn 0.4s ease, slideUp 0.4s ease;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-height: 100%;
  overflow-y: auto; /* zusätzlicher Schutz */
}

/* Close-Button */
#modernPopup .close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Optimierung */
@media (max-width: 480px) {
  #modernPopup .popup-content {
    padding: 18px 20px;
    font-size: 15px;
  }

  #modernPopup .close-btn {
    top: 8px;
    right: 10px;
    font-size: 18px;
  }
}

.coupon-section {
    background: #f9f9f9;
    padding: 30px 20px;
}

.coupon-container {
    max-width: 800px;
    margin: 0 auto;
}

.coupon-card {
    background-color: #fff;
    border-left: 5px solid #28a745;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.coupon-code {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.copy-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background-color: #218838;
}

.coupon-description {
    font-size: 15px;
    margin-bottom: 6px;
    color: #555;
}

.coupon-minimum {
    font-size: 13px;
    color: #888;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    font-size: 15px;
}

.toast.success { background-color: #28a745; }
.toast.error { background-color: #dc3545; }


.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap; /* damit sie umbrechen dürfen */
}

.hero-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.order-btn {
    background: #FF8A00;
    color: #fff;
}

.order-btn:hover {
    background: #e67600;
}

.menu-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ? Mobile-Optimierung */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column; /* untereinander */
        align-items: center;    /* zentrieren */
        gap: 12px;              /* Abstand zwischen Buttons */
    }

    .hero-btn {
        width: 80%;   /* Buttons nehmen fast die ganze Breite */
        max-width: 300px;
    }
}


