        :root {
            --primary-pink: #e91e63;
            --light-pink: #fce4ec;
            --dark-pink: #c2185b;
            --white: #ffffff;
            --dark-text: #2c3e50;
            --light-gray: #f8f9fa;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            line-height: 1.6;
            color: var(--dark-text);
            background: var(--white);
        }

        /* Navbar Styling */
        .navbar {
            background: var(--white) !important;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--light-pink);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--primary-pink) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-pink) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-pink);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="25" cy="75" r="1" fill="white" opacity="0.04"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.06"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styling */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--primary-pink);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
            border-radius: 2px;
        }

        /* Card Styling */
        .custom-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 2px solid var(--light-pink);
            transition: all 0.4s ease;
            height: 100%;
        }

        .custom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
            border-color: var(--primary-pink);
        }

        .custom-card h4 {
            color: var(--primary-pink);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        /* Store Cards */
        .store-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 2px solid var(--light-pink);
            transition: all 0.4s ease;
            margin-bottom: 2rem;
        }

        .store-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
        }

        .store-card h5 {
            background: var(--primary-pink);
            color: white;
            padding: 1rem;
            margin: 0;
            font-weight: 600;
        }

        .store-card p {
            padding: 1rem;
            margin: 0;
            color: var(--dark-text);
        }

        .store-card iframe {
            border-radius: 0 0 18px 18px;
        }

        /* FAQ Styling */
        .accordion-item {
            border: 2px solid var(--light-pink);
            margin-bottom: 1rem;
            border-radius: 15px !important;
            overflow: hidden;
        }

        .accordion-button {
            background: var(--light-pink) !important;
            color: var(--dark-text) !important;
            font-weight: 500;
            border: none !important;
            padding: 1.5rem !important;
        }

        .accordion-button:focus {
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-pink) !important;
            color: white !important;
        }

        .accordion-body {
            background: var(--white);
            padding: 1.5rem !important;
        }

        /* Contact Form */
        .form-control {
            border: 2px solid var(--light-pink);
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-pink);
            box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
        }

        /* Background Sections */
        .bg-light-pink {
            background: var(--light-pink) !important;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-text) 0%, #1a252f 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
        }

        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid var(--light-pink);
            border-top: 4px solid var(--primary-pink);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Wheel slice text legibility */
#wheel .slice-text { filter: drop-shadow(0 1px 2px rgba(0,0,0,.25)); }

/* Little confetti canvas overlay */
#confettiCanvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; display:none;
}


/* Footer Styling */
footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #1a252f 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    font-size: 0.95rem;
}

.footer-section h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--light-pink);
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background: var(--primary-pink);
    border-radius: 2px;
}

.footer-section p {
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 5px;
}

.footer-section ul li a:hover {
    color: var(--primary-pink);
    padding-left: 10px;
}

footer .fa-facebook:hover { color: #3b5998 !important; }
footer .fa-instagram:hover { color: #e4405f !important; }
footer .fa-whatsapp:hover { color: #25d366 !important; }

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

footer .text-center p {
    margin: 0.2rem 0;
    color: var(--light-gray);
}

footer .text-center small {
    opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Kleine hero voor subpagina's */
.small-hero {
  height: 50vh;
  background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.small-hero .hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.small-hero .hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

/* About Page Content */
#about p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-text);
}

#about img {
  border: 4px solid var(--light-pink);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#about img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.25);
}

#about .custom-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--light-pink);
  transition: all 0.3s ease;
}

#about .custom-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-pink);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.2);
}

#about .custom-card h4 {
  color: var(--primary-pink);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

/* Timeline */
.timeline ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  position: relative;
}

.timeline ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: var(--light-pink);
}

.timeline ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--dark-text);
}

.timeline ul li::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--primary-pink);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--light-pink);
}

.timeline ul li span {
  font-weight: 600;
  color: var(--primary-pink);
  margin-right: 8px;
  display: inline-block;
  min-width: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .small-hero {
    height: 40vh;
  }

  .small-hero .hero-content h1 {
    font-size: 2.2rem;
  }

  #about .custom-card {
    margin-bottom: 1.5rem;
  }

  .timeline ul::before {
    left: 10px;
  }

  .timeline ul li {
    padding-left: 40px;
  }

  .timeline ul li::before {
    left: 0;
  }
}




