/* --- BASIS LAYOUT (Gitzwart geoptimaliseerd) --- */
.sw-teaser-section {
    background-color: #000000; /* Puur zwart */
    padding: 100px 20px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.sw-teaser-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- DE ANIMATIE KEYFRAMES --- */

@keyframes swSlideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes swSlideInDown {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes swFadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* --- ELEMENTEN MET ANIMATIE --- */

.sw-teaser-eyebrow {
    display: block;
    color: #ffc400; /* Jouw Geel */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    opacity: 0; /* Start onzichtbaar */
    animation: swSlideInLeft 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.sw-teaser-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 25px 0;
    opacity: 0;
    animation: swSlideInDown 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
    animation-delay: 0.5s; /* Valt iets later */
}

.sw-teaser-text {
    color: #a0a0a0;
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0;
    animation: swSlideInLeft 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

.sw-teaser-action {
    opacity: 0;
    animation: swFadeInScale 1s ease-out forwards;
    animation-delay: 1.2s; /* Knop verschijnt als laatste */
}

.sw-teaser-yellow {
    color: #ffc400;
}

/* --- DE KNOP STYLING --- */
.sw-teaser-btn {
    background: #ffc400;
    color: #000000 !important;
    padding: 22px 45px;
    border-radius: 60px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 196, 0, 0.2);
}

.sw-teaser-btn svg {
    transition: transform 0.3s ease;
}

.sw-teaser-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.sw-teaser-btn:hover svg {
    transform: translateX(5px);
}

/* --- MOBIEL --- */
@media (max-width: 850px) {
    .sw-teaser-container {
        flex-direction: column;
        text-align: center;
    }
    .sw-teaser-title { font-size: 2.2rem; }
}