/* Subtle Eternal Circle Animations */

/* Keyframe animations - toned down */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Apply subtle animations to elements */
.content-block {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.15s; }
.content-block:nth-child(3) { animation-delay: 0.2s; }
.content-block:nth-child(4) { animation-delay: 0.25s; }
.content-block:nth-child(5) { animation-delay: 0.3s; }
.content-block:nth-child(6) { animation-delay: 0.35s; }

.content-header {
    animation: fadeInScale 0.5s ease forwards;
}

/* Gentle hover effects */
.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 52, 131, 0.1);
}

/* Button ripple effect */
.cta-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading animation for page transitions */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--paars), var(--blauw));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Subtle header gradient - no animation */
.main-header {
    background: linear-gradient(90deg, 
        var(--paars), 
        var(--blauw), 
        var(--groen), 
        var(--geel), 
        var(--oranje), 
        var(--rood)
    );
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Simple text shimmer effect for special text - slower */
.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--paars) 25%,
        var(--blauw) 50%,
        var(--paars) 75%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Mobile optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Simple scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
