/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');



/* Performance-Optimierung für Animationen */
@media (prefers-reduced-motion: reduce) {
    .cta-reservation {
        animation: none !important;
    }
    
    .cta-content .btn.primary::before {
        display: none !important;
    }
}

/* Mobile-optimiertes CSS für die Menüseite */
@media (max-width: 768px) {
    /* Allgemeine Anpassungen */
    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
        background-color: #fafafa;
    }

    .container {
        width: 100%;
        padding: 0.5rem;
        margin: 0;
    }

    section {
        padding: 1.5rem 0;
    }

    /* Header-Bereich */
    .navbar {
        padding: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    /* Optimiertes mobiles Menü */
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(255, 255, 255, 0.98);
        padding: 2rem 0;
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
    }

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

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        font-size: 1.1rem;
        color: var(--secondary-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background-color: rgba(230, 57, 70, 0.1);
        padding-left: 2.5rem;
    }

    .nav-menu a.active {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* Menü-Hero - Animiert für Mobile */
    .menu-hero {
        height: 30vh;
        min-height: 220px;
        margin-top: 60px;
        background: linear-gradient(45deg, var(--primary-color), #d62c3b, var(--secondary-color), #2a4a6b);
        background-size: 300% 300%;
        animation: gradientShift 6s ease-in-out infinite;
        position: relative;
        overflow: hidden;
        padding: 60px 15px;
    }

    .menu-hero::before {
        content: '🍖';
        position: absolute;
        top: 20%;
        left: 10%;
        font-size: 1.8rem;
        opacity: 0.2;
        animation: float1 5s ease-in-out infinite;
        z-index: 1;
    }

    .menu-hero::after {
        content: '🥤';
        position: absolute;
        top: 75%;
        right: 15%;
        font-size: 1.5rem;
        opacity: 0.2;
        animation: float2 6s ease-in-out infinite reverse;
        z-index: 1;
    }

    .menu-hero-content {
        position: relative;
        z-index: 3;
        padding: 1.5rem 1rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 16px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        max-width: 90%;
        margin: 0 auto;
    }

    .menu-hero h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-shadow: 0 3px 6px rgba(0,0,0,0.5);
        color: white;
        font-weight: 700;
    }

    .menu-hero h2::after {
        background-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(230, 57, 70, 0.6);
        width: 80px;
    }

    .menu-hero p {
        font-size: 1rem;
        opacity: 0.95;
        margin-bottom: 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        color: rgba(255, 255, 255, 0.95);
    }

    /* Menü-Einführung - Kompakter */
    .menu-introduction {
        margin-bottom: 1rem;
        padding: 1rem;
        background: white;
        border-radius: 16px;
        margin: 1rem;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .menu-introduction h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .menu-introduction p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #666;
    }

    /* Menü-Kategorien - 2x2 Grid Layout */
    .menu-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        padding: 0.5rem 0 1rem 0;
        max-width: 100%;
    }

    .category-item {
        padding: 0.7rem 0.5rem;
        background: linear-gradient(135deg, var(--primary-color), #d62c3b);
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
        border: none;
        transition: all 0.3s ease;
        min-height: 65px;
        max-height: 65px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        cursor: pointer;
    }

    .category-item:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
        background: linear-gradient(135deg, #d62c3b, var(--primary-color));
    }

    .category-item i {
        font-size: 1.2rem;
        color: white;
        margin-bottom: 0.3rem;
        display: block;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .category-item h3 {
        font-size: 0.75rem;
        margin: 0;
        color: white;
        font-weight: 700;
        line-height: 1.1;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .category-item p {
        display: none;
    }

    /* PDF-Menü - Modernes Card Design */
    .pdf-menu {
        background: white;
        border-radius: 20px;
        margin: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        border: 1px solid rgba(230, 57, 70, 0.1);
    }

    .pdf-menu-header {
        background: linear-gradient(135deg, var(--primary-color), #d62c3b);
        color: white;
        padding: 1.5rem 1rem;
        text-align: center;
        position: relative;
    }

    .pdf-menu-header::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 10px solid var(--primary-color);
    }

    .pdf-menu h2 {
        font-size: 1.4rem;
        margin: 0;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .pdf-menu-content {
        padding: 1.5rem 1rem;
    }

    .pdf-menu p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* Kompakte Download-Buttons */
    .menu-download-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .download-btn, .view-btn {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        min-height: 48px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .download-btn {
        background: linear-gradient(135deg, var(--primary-color), #d62c3b);
        border: none;
        color: white;
        box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    }

    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
    }

    .view-btn {
        background: white;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .view-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    .download-btn i, .view-btn i {
        font-size: 1rem;
    }

    /* PDF-Vorschau - Versteckt auf Mobile */
    .pdf-preview {
        display: none !important;
    }

    /* Mobile PDF-Info Card - entfernt */

    /* CTA-Bereich - Kompakter */
    .cta-reservation {
        margin: 1rem;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, var(--secondary-color), #2a4a6b);
        position: relative;
    }

    .cta-reservation::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    }

    .cta-reservation .container {
        padding: 2rem 1rem;
        position: relative;
        z-index: 2;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: white;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.4;
    }

    .cta-content .btn {
        background: var(--primary-color);
        color: white;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
        border: none;
        font-size: 0.9rem;
        min-width: 200px;
    }

    .cta-content .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo h2, .footer-links h3, .footer-contact h3, .footer-social h3 {
        text-align: center;
    }

    .footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Noch kleinere Geräte - Ultra-kompakt */
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0.3rem;
    }
    
    .menu-hero {
        height: 25vh;
        min-height: 160px;
        background: linear-gradient(45deg, var(--primary-color), #d62c3b, var(--secondary-color));
        background-size: 200% 200%;
        animation: gradientShift 5s ease-in-out infinite;
    }

    .menu-hero::before {
        content: '🍽️';
        position: absolute;
        top: 25%;
        left: 8%;
        font-size: 1.5rem;
        opacity: 0.15;
        animation: float1 4s ease-in-out infinite;
        z-index: 1;
    }

    .menu-hero::after {
        content: '🥘';
        position: absolute;
        top: 70%;
        right: 12%;
        font-size: 1.3rem;
        opacity: 0.15;
        animation: float2 5s ease-in-out infinite reverse;
        z-index: 1;
    }

    .menu-hero-content {
        padding: 1.2rem 1rem;
        border-radius: 14px;
        max-width: 95%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    .menu-hero h2 {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }

    .menu-hero h2::after {
        width: 60px;
    }
    
    .menu-hero p {
        font-size: 0.85rem;
    }

    /* Ultra-kompakte Kategorien - 2x2 Grid */
    .menu-categories {
        gap: 0.4rem !important;
        padding: 0.3rem 0 !important;
    }

    .category-item {
        padding: 0.5rem 0.3rem !important;
        min-height: 55px !important;
        max-height: 55px !important;
    }

    .category-item i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }

    .category-item h3 {
        font-size: 0.7rem !important;
        margin: 0 !important;
    }

    .category-item p {
        display: none !important;
    }

    /* PDF-Menü noch kompakter */
    .pdf-menu {
        margin: 0.5rem;
        border-radius: 16px;
    }

    .pdf-menu-header {
        padding: 1rem;
    }

    .pdf-menu h2 {
        font-size: 1.2rem;
    }

    .pdf-menu-content {
        padding: 1rem;
    }

    .pdf-preview object {
        height: 250px;
    }
    
    .menu-download-options {
        gap: 0.6rem;
    }
    
    .download-btn, .view-btn {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
        min-height: 44px;
    }

    /* CTA noch kompakter */
    .cta-reservation {
        margin: 0.5rem;
        border-radius: 16px;
        padding: 2.5rem 0;
    }
    
    .cta-reservation::after {
        font-size: 5rem;
        opacity: 0.06;
        bottom: -10px;
        right: 5%;
    }

    .cta-content {
        padding: 1.5rem;
        max-width: 90%;
        border-radius: 16px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-content .btn.primary {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
        min-width: 200px;
        width: 100%;
    }

    /* Menu-Introduction kompakter */
    .menu-introduction {
        margin: 0.5rem;
        padding: 0.8rem;
    }

    .menu-introduction h2 {
        font-size: 1.4rem;
    }

    .menu-introduction p {
        font-size: 0.85rem;
    }
}

/* Reset und Basis Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f1faee;
    --text-color: #333333;
    --light-text: #f1faee;
    --background-color: #ffffff;
    --dark-background: #1d3557;
    --light-background: #f1faee;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.btn.primary:hover {
    background-color: #d62c3b;
    border-color: #d62c3b;
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button, .cookie-buttons a {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.cookie-buttons button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
}

.cookie-buttons a {
    color: var(--light-text);
    text-decoration: underline;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 1.8rem;
}

.logo p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.menu-toggle, #mobile-menu {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar, #mobile-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Verbesserte Mobile Navigation Styles */
@media (max-width: 768px) {
    .menu-toggle, #mobile-menu {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(255, 255, 255, 0.98);
        padding: 2rem 0;
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        font-size: 1.1rem;
        color: var(--secondary-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background-color: rgba(230, 57, 70, 0.1);
        padding-left: 2.5rem;
    }

    .nav-menu a.active {
        color: var(--primary-color);
        font-weight: 600;
    }
}

/* Menü Hero Section - Animiert */
.menu-hero {
    height: 40vh;
    background: linear-gradient(45deg, var(--primary-color), #d62c3b, var(--secondary-color), #2a4a6b);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    margin-top: 70px;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.menu-hero::before {
    content: '🍽️';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float1 6s ease-in-out infinite;
    z-index: 1;
}

.menu-hero::after {
    content: '🥘';
    position: absolute;
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float2 7s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

/* Zusätzliche animierte Elemente */
.menu-hero::before {
    content: '🍽️';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float1 6s ease-in-out infinite;
    z-index: 1;
}

.menu-hero::after {
    content: '🥘';
    position: absolute;
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float2 7s ease-in-out infinite reverse;
    z-index: 1;
}

/* Weitere schwebende Elemente */
.menu-hero-content::before {
    content: '🌶️';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: spin 10s linear infinite;
    z-index: -1;
}

.menu-hero-content::after {
    content: '🧄';
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 1.3rem;
    opacity: 0.2;
    animation: bounce 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.menu-hero-content {
    max-width: 700px;
    padding: 2rem;
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.menu-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    font-weight: 700;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.menu-hero h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.5);
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    }
    100% {
        text-shadow: 0 3px 6px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.1);
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 2px 4px rgba(230, 57, 70, 0.5);
    }
    100% {
        box-shadow: 0 2px 4px rgba(230, 57, 70, 0.5), 0 0 15px rgba(230, 57, 70, 0.3);
    }
}

.menu-hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 500;
}

/* Menü Content Section */
.menu-content {
    padding: 4rem 0;
    background-color: var(--background-color);
    position: relative;
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.menu-introduction {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-introduction h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.menu-introduction h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.menu-introduction p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Menü Kategorien - Desktop */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d62c3b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.category-item:hover::before {
    transform: scaleX(1);
}

.category-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.category-item:hover i {
    transform: scale(1.1);
}

.category-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-item:hover h3 {
    color: var(--primary-color);
}

/* MOBILE OVERRIDE - Höchste Priorität */
@media screen and (max-width: 768px) {
    .menu-categories {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 0.5rem !important;
        margin: 1rem 0 !important;
        padding: 0 !important;
    }

    .category-item {
        padding: 0.8rem 0.5rem !important;
        background: linear-gradient(135deg, var(--primary-color), #d62c3b) !important;
        border-radius: 10px !important;
        text-align: center !important;
        box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3) !important;
        border: none !important;
        transition: all 0.3s ease !important;
        min-height: 70px !important;
        max-height: 70px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        color: white !important;
        cursor: pointer !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .category-item:hover,
    .category-item:active {
        transform: translateY(-2px) scale(1.02) !important;
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4) !important;
        background: linear-gradient(135deg, #d62c3b, var(--primary-color)) !important;
    }

    .category-item i {
        font-size: 1.3rem !important;
        color: white !important;
        margin-bottom: 0.3rem !important;
        display: block !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
    }

    .category-item h3 {
        font-size: 0.8rem !important;
        margin: 0 !important;
        color: white !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .category-item p {
        display: none !important;
    }
}

/* PDF-Menü-Bereich */
.pdf-menu {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pdf-menu::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

/* Desktop PDF-Anzeige */
@media (min-width: 769px) {
    .pdf-preview {
        display: block !important;
        background-color: white;
        border-radius: var(--border-radius);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: var(--shadow);
    }
    
    .pdf-info {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        background-color: var(--accent-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .pdf-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-right: 1rem;
    }
    
    .pdf-details h3 {
        margin-bottom: 0.3rem;
        color: var(--secondary-color);
    }
    
    .pdf-details p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    .pdf-preview object {
        width: 100%;
        height: 600px;
        display: block;
    }
}

.pdf-menu h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.pdf-menu h2::after {
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d62c3b);
    border-radius: 2px;
}

.pdf-menu p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    color: #555;
    line-height: 1.7;
}

.menu-download-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.download-btn, .view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 250px;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn {
    background: linear-gradient(45deg, var(--primary-color), #d62c3b);
    color: white;
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.3);
    border: none;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(230, 57, 70, 0.4);
}

.view-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.2);
}

.download-btn i, .view-btn i {
    font-size: 1.3rem;
}

.pdf-preview {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.pdf-info {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.8rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.pdf-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #d62c3b);
}

.pdf-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pdf-details h3 {
    margin-bottom: 0.4rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.pdf-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #555;
}

.pdf-preview object {
    width: 100%;
    height: 600px;
    display: block;
    background: #f8f9fa url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="%23f8f9fa"/><circle cx="10" cy="10" r="1" fill="%23e9ecef"/></svg>') repeat;
}



/* CTA Reservierung */
.cta-reservation {
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(230, 57, 70, 0.85));
    background-size: 200% 200%;
    animation: gradientShift 10s ease-in-out infinite;
    padding: 5rem 0;
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 5rem 0 0;
    border-radius: 0;
}

.cta-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,25 50,50 T100,50" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/></svg>') repeat;
    z-index: 1;
}

.cta-reservation::after {
    content: '🍽️';
    position: absolute;
    font-size: 8rem;
    opacity: 0.08;
    bottom: -20px;
    right: 10%;
    z-index: 1;
    transform: rotate(-15deg);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.cta-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7));
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.cta-content .btn.primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-content .btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.cta-content .btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.cta-content .btn.primary:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-logo h2::after {
    display: none;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.2rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-hero h2 {
        font-size: 2.5rem;
    }
    
    .menu-hero p {
        font-size: 1rem;
    }
    
    .menu-categories, .recommendation-grid {
        grid-template-columns: 1fr;
    }
    
    .pdf-menu {
        padding: 2rem 1rem;
    }
    
    .menu-download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn, .view-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pdf-preview {
        margin-top: 1rem;
    }
    
    .pdf-info {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .pdf-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .pdf-preview object {
        height: 400px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    .menu-hero h2 {
        font-size: 2rem;
    }
    
    .pdf-preview object {
        height: 300px;
    }
}

body.menu-open {
    overflow: hidden;
}

/* Performance-Optimierung für Animationen */
@media (prefers-reduced-motion: reduce) {
    .menu-hero,
    .menu-hero::before,
    .menu-hero::after,
    .menu-hero-content::before,
    .menu-hero-content::after,
    .menu-hero h2,
    .menu-hero h2::after {
        animation: none !important;
    }
}

/* Mobile Performance-Optimierung */
@media (max-width: 768px) {
    .menu-hero {
        will-change: background-position;
    }
    
    .menu-hero::before,
    .menu-hero::after,
    .menu-hero-content::before,
    .menu-hero-content::after {
        will-change: transform;
    }
}
