.project{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project-intro{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slide__text{
    z-index: 10;
}

.project-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.project-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Lineaire gradient voor de inner shadow aan de bovenkant */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 90%),
        /* Originele radial gradient behouden */
        radial-gradient(circle at center, rgba(12, 12, 12, 0) 30%, rgba(12, 12, 12, 0.7) 70%, rgba(12, 12, 12, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.project-background img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.project-intro__content {
    width: 70%;
    display: flex;
}

.project__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #1a1a1a;

}
.project-Description{
    max-width: 70%;
    display: flex;
    padding-top: 10rem;
    padding-bottom: 10rem;

}

.project__tools{
    width: 30%;
    height: 100%;
}

.project__description{
    height: 100%;
    width: 70%;
}

.project__image{
    width: 100%;
    height: 80vh;
    position: relative;
}




.project__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 12, 12, 0) 30%, /* Clear center */ rgba(12, 12, 12, 0.7) 70%, /* Darker towards the edges */ rgba(12, 12, 12, 0.9) 100% /* Very dark at the edges */);
    z-index: 1;
    pointer-events: none;
}

.project__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.project-intro__content {
    width: 70%;
    display: flex;
}


@media (max-width: 900px) {
    .project-Description{
        max-width: 90%;
        display: flex;
        flex-direction: column;
        gap: 5rem;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .project-intro__content {
        width: 90%;
        display: flex;
    }

    .project__tools{
        width: 100%;
    }
    
    .project__description{
        width: 100%;
    }

    .project__image{
        height: auto;
    }

    .project-background::before {
        background: radial-gradient(circle at center, 
            rgba(168, 149, 149, 0) 40%,   /* Vergroot het transparante gebied */
            rgba(12, 12, 12, 0.4) 65%, /* Maak de tussenlaag lichter */
            rgba(12, 12, 12, 0.7) 85%, /* Verminder de intensiteit bij de randen */
            rgba(12, 12, 12, 0.85) 100% /* Maak de buitenrand iets minder donker */
        );
    }
    
}







/* Start zonder animatie (onzichtbaar en naar beneden verschoven) */
/* Start zonder animatie (onzichtbaar en naar beneden verschoven) */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Wanneer zichtbaar in de viewport */
.slide-up-visible {
    opacity: 1;
    transform: translateY(0);
}




/* Voor de initiële animatie bij het laden */
.project-intro.slide-up-visible {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
