
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 120px; /* WICHTIG: Verhindert Überlappung */
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #f5f5f5;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        /* Luxury Background Elements */
        .luxury-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            background: radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(2px 2px at 20px 30px, rgba(220, 20, 60, 0.2), transparent),
                        radial-gradient(1px 1px at 40px 70px, rgba(139, 0, 0, 0.1), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: float 30s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-100px); }
        }

        /* Header & Navigation - FIXED */
        header {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 10, 10, 0.9) 100%);
            color: #f5f5f5;
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 9999; /* ERHÖHT für bessere Layering */
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8),
                        0 0 100px rgba(220, 20, 60, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(220, 20, 60, 0.2);
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(30px);
            box-shadow: 0 12px 60px rgba(0, 0, 0, 0.9),
                        0 0 120px rgba(220, 20, 60, 0.2);
            padding: 1rem 0;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }

        

.logo {
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px; /* Adjust this value to make the logo bigger/smaller */
    width: auto; /* This keeps the aspect ratio */
    transition: all 0.3s ease;
    filter: brightness(1.1); /* Slightly brighter for better visibility */
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* For mobile devices, make the logo smaller */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

/* If you need to adjust for very small screens */
@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-menu a {
            color: #f5f5f5;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background:#550000;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a:hover {
            color: #550000;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f5f5f5;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
            padding: 8px;
            z-index: 10000;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: #550000;
            transition: all 0.3s ease;
        }

        /* Hero Section - Überschriftthingy */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(18, 13, 13, 0.7)),
                        url('nagoya-restaurant.png') center/cover; 
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #f5f5f5;
            padding-top: 120px; /* WICHTIG: Platz für Header */
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(220, 20, 60, 0.5);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero-title-main {
            font-family: 'Playfair Display', serif;
            font-size: 7rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
            line-height: 1.2;
            
        }

        .hero-subtitle {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #550000 0%, #8a0202 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            letter-spacing: 2px;
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 18px 36px;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            color: #ffffff;
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #dc143c 0%, #550000 100%);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
        }

        .btn-secondary {
            background: rgba(0, 0, 0, 0.7);
            color: #f5f5f5;
            border: 2px solid rgba(220, 20, 60, 0.5);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(220, 20, 60, 0.2);
            border-color: #550000;
            transform: translateY(-2px);
        }

        /* Section Styles - SCROLL ANCHOR FIXED */
        section {
            padding: 8rem 3rem; /* REDUZIERT für besseres Scrolling */
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* SCROLL ANCHOR FIX */
        section::before {
            content: '';
            display: block;
            height: 120px; /* Höhe des Headers */
            margin-top: -120px;
            visibility: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(220, 20, 60, 0.1);
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: #dc143c;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 2rem;
            color: #ffffff;
            font-weight: 600;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }



/* --- HOW TO SECTION --- */
.how-to-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.how-to-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.3s ease;
}

.how-to-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 20, 60, 0.5);
  box-shadow: 0 30px 80px rgba(220, 20, 60, 0.2);
}

.how-to-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b0000, #dc143c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.how-to-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.how-to-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .how-to-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-to-card {
    padding: 2rem;
  }
}

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .price-card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(220, 20, 60, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            text-align: center;
        }

        .price-card:hover {
            transform: translateY(-10px);
            border-color: rgba(220, 20, 60, 0.5);
            box-shadow: 0 30px 80px rgba(220, 20, 60, 0.2);
        }

        .price-card.featured {
            border-color: #dc143c;
            background: linear-gradient(145deg, rgba(220, 20, 60, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
        }

        .price-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b0000, #dc143c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: #ffffff;
            font-size: 2rem;
        }

        .price-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-weight: 600;
        }

        .price-time {
            color: rgba(220, 20, 60, 0.8);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .price-features {
            list-style: none;
            text-align: left;
        }

        .price-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
        }

        .price-features i {
            color: #dc143c;
            margin-right: 1rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .contact-card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(220, 20, 60, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: rgba(220, 20, 60, 0.5);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b0000, #dc143c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: #ffffff;
            font-size: 2rem;
        }

        .contact-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-weight: 600;
        }

        .contact-info {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #000000 0%, #1a0a0a 100%);
            color: #ffffff;
            padding: 4rem 3rem 2rem;
            border-top: 1px solid rgba(220, 20, 60, 0.3);
            text-align: center;
        }

        .footer-logo .logo-main {
            font-size: 2.5rem;
        }

        .footer-info {
            margin: 2rem 0;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #dc143c;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            background: rgba(220, 20, 60, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #dc143c;
            transform: translateY(-3px);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            html {
                scroll-padding-top: 100px; /* ANGEPASST für Mobile */
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                z-index: 9998; /* UNTER Header aber über Content */
            }

            .nav-menu.mobile-active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding-top: 100px; /* ANGEPASST für Mobile Header */
            }

            .hero-title-main {
                font-size: 4rem;
            }

            .hero-subtitle {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1.5rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            section {
                padding: 5rem 2rem;
            }

            section::before {
                height: 100px; /* ANGEPASST für Mobile */
                margin-top: -100px;
            }

            h2 {
                font-size: 3rem;
            }

            .pricing-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-image {
                height: 250px; /* NOCH KLEINER für sehr kleine Bildschirme */
            }

            .hero-title-main {
                font-size: 3rem;
            }

            .price-card,
            .contact-card {
                padding: 2rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* CTA Section Styling */
        .cta-section {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            background: rgba(220, 20, 60, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(220, 20, 60, 0.2);
        }

        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #dc143c;
        }

        .cta-section p {
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }



    