

/* ============================================
   UPKOT x TOUT BIEN — style.css
   ============================================ */

/* --- Tailwind custom config via @layer --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-pampas:       #F5F3EF;
    --color-blue:         #1B1464;
    --color-text:         #1B1464;
    --color-purple-dark:  #1E0B3D;
    --color-purple:       #2E1065;
    --color-topaz:        #00e0d0;
    --color-charcoal:     #242424;
}

/* ============================================
   BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    background-color: var(--color-pampas);
}
.rounded-t-4xl {
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

/* ============================================
   TYPOGRAPHY — TOUT BIEN FONT
   (Adobe Fonts via typekit: uln6jsc)
   Gebruik: font-tout-bien
   ============================================ */
h1, h2, h3, h4, h5, h6, .font-tout-bien{
			font-family: "obviously", sans-serif;
			font-weight: 800;
			font-style: italic;
		}
/* ============================================
   KLEUR UTILITIES
   ============================================ */
.bg-pampas          { background-color: var(--color-pampas); }
.bg-topaz          { background-color: var(--color-topaz); }
.bg-charcoal         { background-color: var(--color-charcoal); }
.text-blue          { color: var(--color-blue); }
.text-text          { color: var(--color-text); }
.text-charcoal { color: var(--color-charcoal); }

/* Tout Bien gradient (geel → oranje) */
.bg-gradient-tout-bien {
    background: linear-gradient(270deg, #D9CFF9 -0.13%, #00E0D0 23.87%, #D9CFF9 49.87%, #D61020 75.87%, #D9CFF9 99.87%);
}
.gradient-border:after{
    content: " ";
    position: relative;
    width: 100%;
    height: 8px;
    background: linear-gradient(270deg, #D9CFF9 -0.13%, #00E0D0 23.87%, #D9CFF9 49.87%, #D61020 75.87%, #D9CFF9 99.87%);
    
}
header.gradient-border {
    border-bottom: 8px solid transparent;
    border-image: linear-gradient(270deg, #D9CFF9 -0.13%, #00E0D0 23.87%, #D9CFF9 49.87%, #D61020 75.87%, #D9CFF9 99.87%);
    border-image-slice: 1;
}

/* Purple sectie achtergrond */
.purple-section {
    background: var(--color-blue);
}
.border-topaz { border: 1px solid var(--color-topaz);}
/* ============================================
   HEADER
   ============================================ */
header {
    backdrop-filter: blur(8px);
}

/* ============================================
   HERO
   ============================================ */
.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
}
.gradient-text{
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.75s ease;
}
.gradient-text:hover {
    background: linear-gradient(270deg, #D9CFF9 -0.13%, #00E0D0 23.87%, #D9CFF9 49.87%, #D61020 75.87%, #D9CFF9 99.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}

/* ============================================
   SCROLLING BANNER
   ============================================ */
.scrolling-banner {
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-content {
    display: inline-block;
    animation: ticker 35s linear infinite;
    will-change: transform;
}

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FORM INPUTS
   ============================================ */
.form-input {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    border-radius: 0.5rem;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.13);
    border-color: var(--color-topaz);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

textarea.form-input {
    resize: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(90deg, var(--color-topaz) 0%, #45b7d1 100%);
    color: var(--color-purple-dark);
    font-weight: 900;
    border-radius: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(78, 205, 196, 0.35);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ============================================
   MASONRY GRID
   ============================================ */
.masonry-grid {
    column-gap: 4rem;
}

/* Elk item start onzichtbaar */
.masonry-item {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition:
        opacity  0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.masonry-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.masonry-item img {
    display: block;
    width: 100%;
    border-radius: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.masonry-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}
/* ============================================
   TAG / STAMP
   Rode rotated badge — "THE GAME IS ON!"
   ============================================ */
.tag-stamp {
    display: inline-block;
    position: relative;
    padding: 0.45rem 1.1rem;
    white-space: nowrap;
    margin-bottom: 2rem;
}

/* Rotated rode achtergrond via pseudo-element */
.tag-stamp::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #D32B2B;
    border-radius: 3px;
    transform: rotate(-1deg);
    z-index: 0;
}

/* Tekst blijft rechtop */
.tag-stamp span {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-family: "acumin-pro-extra-condensed", "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
/* ============================================
   HOW IT WORKS — STEP CARDS
   ============================================ */
.step-card {
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-card img {
    transition: transform 0.35s ease;
}



/* Genummerd bolletje linksboven de foto */
.step-number {
    position: absolute;
    top: -14px;
    left: -14px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background-color: #c4b8e8; /* licht paars, zoals in het design */
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
footer a {
    transition: color 0.2s ease;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
    .scrolling-content span {
        font-size: 1.5rem;
    }

    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 1;
    }
}
/* ============================================
   VIDEO THUMBNAIL — rechtsonder in hero
   ============================================ */
.video-thumbnail-wrapper {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 20;
}

.video-thumbnail {
    position: relative;
    width: 280px;
    height: 157px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 8px, transparent 8px) 0% 0%/16px 16px no-repeat,
            radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px) 100% 0%/16px 16px no-repeat,
            radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px) 0% 100%/16px 16px no-repeat,
            radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100% 100%/16px 16px no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 16px) calc(100% - 32px) no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 32px) calc(100% - 16px) no-repeat,
            linear-gradient(90deg, #d9cff9 -0.13%, #00e0d0 23.87%, #d9cff9 49.87%, #d61020 75.87%, #D9CFF9 100%);
border-radius: 16px;
padding: 8px;
box-sizing: border-box;
    
}

.video-thumbnail:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.video-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:8px;
    gap: 0.5rem;
}

.video-thumbnail-label {
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.video-play-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(270deg, #D9CFF9 -0.13%, #00E0D0 23.87%, #D9CFF9 49.87%, #D61020 75.87%, #D9CFF9 99.87%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pampas);
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-thumbnail:hover .video-play-button {
    transform: scale(1.1);
    background: linear-gradient(270deg, #D9CFF9 -0.13%, #00E0D0 23.87%, #D9CFF9 49.87%, #D61020 75.87%, #D9CFF9 99.87%);;
}
/* ============================================
   VIDEO LIGHTBOX
   ============================================ */
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.video-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
}

.video-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
}

.video-lightbox-content {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive video thumbnail */
@media (max-width: 768px) {
    .video-thumbnail-wrapper {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .video-thumbnail {
        width: 200px;
        height: 112px;
    }

    .video-play-button {
        width: 40px;
        height: 40px;
    }

    .video-play-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}
/* ============================================
   FALLING CANS — sneeuw animatie
   ============================================ */
.falling-cans-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.falling-can {
    position: absolute;
    top: -150px;
    width: 100px;
    height: auto;
    opacity: 1;
    animation: fall linear infinite;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-150px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 1000px)) rotate(360deg);
        opacity: 0;
    }
}

/* Variaties voor natuurlijke beweging */
.falling-can:nth-child(odd) {
    animation-duration: 10s;
}

.falling-can:nth-child(even) {
    animation-duration: 15s;
}

.falling-can:nth-child(3n) {
    animation-duration: 8s;
}

.falling-can:nth-child(4n) {
    opacity: 1;
}

.falling-can:nth-child(5n) {
    width: 50px;
}

.falling-can:nth-child(7n) {
    width: 70px;
    opacity: 1;
}

/* Responsief — minder blikjes op mobiel */
@media (max-width: 768px) {
    .falling-can {
        width: 45px;
    }
    
    .falling-can:nth-child(n+8) {
        display: none;
    }
} 