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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated background particles */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at 20% 80%, rgba(232, 180, 184, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(184, 212, 232, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(212, 232, 184, 0.2) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatParticle 15s linear infinite;
        }

        .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: -2s; }
        .particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: -4s; }
        .particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: -6s; }
        .particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: -8s; }
        .particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: -10s; }
        .particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: -12s; }
        .particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: -14s; }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            position: relative;
            filter: drop-shadow(0 0 10px rgba(232, 180, 184, 0.5));
        }

        .logo-triangle {
            position: absolute;
            border: 3px solid #e8b4b8;
            background: transparent;
            box-shadow: 0 0 20px rgba(232, 180, 184, 0.3);
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        .logo-triangle.outer {
            width: 45px;
            height: 38px;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 2px;
            left: 2px;
        }

        .logo-triangle.inner {
            width: 25px;
            height: 22px;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 12px;
            left: 12px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.2), rgba(184, 212, 232, 0.2));
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-menu a:hover::before {
            opacity: 1;
        }

        .nav-menu a:hover {
            color: #e8b4b8;
            text-shadow: 0 0 10px rgba(232, 180, 184, 0.5);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 30, 0.9) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(232, 180, 184, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(184, 212, 232, 0.1) 0%, transparent 50%);
            animation: heroGlow 8s ease-in-out infinite alternate;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #e8b4b8, #b8d4e8);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientText 4s ease-in-out infinite, fadeInUp 1s ease-out;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.8);
            animation: fadeInUp 1s ease-out 0.2s both;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #e8b4b8, #b8d4e8);
            color: #ffffff;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            animation: fadeInUp 1s ease-out 0.4s both;
            box-shadow: 0 15px 35px rgba(232, 180, 184, 0.4);
        }

        .cta-button::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: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(232, 180, 184, 0.6);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-onigiri {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: float3d 8s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .floating-onigiri:nth-child(1) {
            top: 15%;
            left: 8%;
            animation-delay: -1s;
        }

        .floating-onigiri:nth-child(2) {
            top: 65%;
            right: 12%;
            animation-delay: -3s;
        }

        .floating-onigiri:nth-child(3) {
            top: 25%;
            right: 20%;
            animation-delay: -5s;
        }

        .floating-onigiri:nth-child(4) {
            top: 80%;
            left: 15%;
            animation-delay: -7s;
        }

        .section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            background: linear-gradient(45deg, #ffffff, #e8b4b8);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.1), rgba(184, 212, 232, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(232, 180, 184, 0.5);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            z-index: 2;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.3), rgba(184, 212, 232, 0.3));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 30px rgba(232, 180, 184, 0.3);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            position: relative;
            z-index: 2;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .onigiri-gallery {
            background: linear-gradient(135deg, rgba(15, 15, 25, 0.9) 0%, rgba(25, 25, 35, 0.9) 100%);
            position: relative;
        }

        .onigiri-gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(232, 180, 184, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(184, 212, 232, 0.1) 0%, transparent 50%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .onigiri-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .onigiri-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.1), rgba(184, 212, 232, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .onigiri-item:hover::before {
            opacity: 1;
        }

        .onigiri-item:hover {
            transform: scale(1.05) rotateY(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(232, 180, 184, 0.5);
        }

        .onigiri-image {
            height: 250px;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.2), rgba(184, 212, 232, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

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

        .onigiri-item:hover .onigiri-image::before {
            left: 100%;
        }

        .onigiri-info {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .onigiri-info h3 {
            color: #ffffff;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .onigiri-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-section {
            background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(184, 212, 232, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(232, 180, 184, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(184, 212, 232, 0.2) 0%, transparent 50%);
            animation: contactGlow 12s ease-in-out infinite alternate;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(232, 180, 184, 0.1), rgba(184, 212, 232, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .contact-card p {
            position: relative;
            z-index: 2;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Keyframe Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float3d {
            0%, 100% { 
                transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
            }
            33% { 
                transform: translateY(-30px) rotateX(10deg) rotateY(5deg); 
            }
            66% { 
                transform: translateY(-15px) rotateX(-5deg) rotateY(-10deg); 
            }
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes backgroundShift {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.05);
            }
        }

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

        @keyframes logoGlow {
            0% {
                filter: drop-shadow(0 0 10px rgba(232, 180, 184, 0.5));
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(232, 180, 184, 0.8));
            }
        }

        @keyframes heroGlow {
            0% {
                opacity: 0.3;
            }
            100% {
                opacity: 0.6;
            }
        }

        @keyframes contactGlow {
            0% {
                opacity: 0.1;
            }
            100% {
                opacity: 0.3;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .nav-menu {
                display: none;
            }
            
            .features {
                grid-template-columns: 1fr;
            }

            .floating-onigiri {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
/* Custom additions */
.company-logo {
    height: 50px;
    width: auto;
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 1rem;
}

.feature-image {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.lang-btn:hover, .lang-btn.active {
    background: rgba(232, 180, 184, 0.4);
}

/* Banner container improvements */
.banner-container {
    position: relative;
    clear: both;
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Remove any floats and center the CTA button */
.company-logo, .lang-switch, .banner-container, .feature-image, .cta-button {
    float: none !important;
}

/* Center the ontdek smaken button */
.cta-button {
    display: block;
    margin: 1.5rem auto !important;
}

/* Invert logo color to white */
.company-logo {
    filter: brightness(0) invert(1);
}


/* Position logo free-standing and scale 200% */
.logo {
    position: relative;
}
.company-logo {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(2);
    transform-origin: top left;
    z-index: 100;
    /* Ensure stands alone */
    margin: 0;
    padding: 0;
}

/* Outer glow for company logo */
.company-logo {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

/* Language visibility */
.lang { display: none; }
body.lang-nl .lang-nl { display: inline; }
body.lang-nl .lang-en { display: none; }
body.lang-en .lang-en { display: inline; }
body.lang-en .lang-nl { display: none; }
