 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #800000;
            --primary-light: #a61e1e;
            --secondary: #FCF9B0;
            --background: #ffffff;
            --foreground: #333333;
            --muted: #f8f8f8;
            --muted-foreground: #666666;
            --border: #e5e5e5;
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--foreground);
            scroll-behavior: smooth;
        }

        .font-serif {
            font-family: var(--font-serif);
        }

        /* Navigation */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 1px solid var(--border);
        }

        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 160px;
        }

        .logo {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: var(--foreground);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 18px;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--foreground);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, #660000 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .hero-content {
            text-align: center;
            color: var(--secondary);
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--secondary);
            border-color: var(--secondary);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            border-color: var(--secondary);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: var(--primary);
            box-shadow: var(--shadow);
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-alt {
            background: var(--muted);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--primary);
            margin-bottom: 20px;
        }

        #impressum .section-title {
            font-family: var(--font-serif);
            font-size: clamp(1.1rem, 5vw, 1.1rem);
            color: var(--primary);
            margin-bottom: 20px;
        }

        #impressum {
            margin-top: 200px;
            margin-bottom: 100px;
        }

        .section-divider {
            width: 100px;
            height: 4px;
            background: var(--primary);
            margin: 0 auto;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h3 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--muted-foreground);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .about-highlight {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .about-highlight i {
            color: var(--primary);
            font-size: 2rem;
        }

        .about-image-container {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--secondary);
            color: var(--primary);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .experience-badge h4 {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        /* Menu Section */
        .menu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .menu-content h3 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .menu-content p {
            font-size: 1.1rem;
            color: var(--muted-foreground);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .menu-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu-item i {
            color: var(--primary);
            font-size: 1.5rem;
            width: 24px;
        }

        .qr-container {
            text-align: center;
        }

        .qr-code-wrapper {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--secondary);
            display: inline-block;
            margin-bottom: 30px;
        }

        .qr-code {
            width: 240px;
            height: 240px;
            border-radius: 8px;
        }

        .qr-instructions h4 {
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 5px;
        }

        .qr-instructions p {
            color: var(--muted-foreground);
        }

        /* Catering Section */
        .catering {
            background: linear-gradient(135deg, var(--primary) 0%, #660000 100%);
            color: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .catering::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .catering .section-title {
            color: var(--secondary);
        }

        .catering .section-divider {
            background: var(--secondary);
        }

        .catering-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .catering-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .catering-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .catering-card h3 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .catering-card p {
            opacity: 0.9;
            line-height: 1.6;
        }

        .catering-cta {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .info-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-item i {
            color: var(--primary);
            font-size: 1.3rem;
            margin-top: 3px;
            width: 20px;
        }

        .info-item a {
            color: var(--primary);
            text-decoration: none;
        }

        .hours-table {
            width: 100%;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 600;
            color: var(--foreground);
        }

        .hours-time {
            color: var(--muted-foreground);
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--foreground);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-control.textarea {
            resize: vertical;
            min-height: 120px;
        }

        .required {
            color: var(--primary);
        }

        .form-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-submit:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Footer */
        .footer {
            background: var(--primary);
            color: var(--secondary);
            padding: 50px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .footer-section p {
            opacity: 0.9;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--secondary);
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .footer a {
            color: var(--secondary);
            text-decoration: none;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(252, 249, 176, 0.2);
            padding-top: 20px;
            text-align: center;
            opacity: 0.75;
        }

        /* Toast Notifications */
        .toast {
            position: fixed;
            top: 90px;
            right: 20px;
            background: white;
            color: var(--foreground);
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            z-index: 1001;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            border-left: 4px solid var(--primary);
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast.success {
            border-left-color: #22c55e;
        }

        .toast.error {
            border-left-color: #ef4444;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }

            .about-grid,
            .menu-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .catering-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section {
                padding: 60px 0;
            }

            .experience-badge {
                position: static;
                margin-top: 20px;
                margin-right: 0;
            }
        }

        @media (max-width: 480px) {
            .nav-wrapper,
            .container {
                padding: 0 15px;
            }

            .contact-form,
            .info-card {
                padding: 25px;
            }

            .hero-content {
                padding: 0 15px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading States */
        .loading {
            position: relative;
            overflow: hidden;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            to {
                left: 100%;
            }
        }


