/* ============================================
   Theme CSS - Regioflyer
   Minimale overrides voor Tailwind CDN
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
}

/* ★ Star of the Show: Ster + Blob motieven ★ */

.star-shape {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-blob {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: linear-gradient(135deg, rgba(124,186,0,0.15) 0%, rgba(232,119,34,0.1) 100%);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    z-index: 0;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    33% { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
    66% { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}

.star-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.star-divider::before,
.star-divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(124,186,0,0.3), transparent);
}

.step-blob {
    position: relative;
}

.step-blob::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(ellipse, rgba(124,186,0,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Sfeerbeelden slider */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider-track {
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.slider-track:hover {
    animation-play-state: paused;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 100;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 2rem;
}

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

/* Active nav link */
.nav-link.active {
    color: #7CBA00;
    font-weight: 600;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
