/* Algemene styling voor de detail-sectie */
.detail {
    display: flex;
    align-items: center;
    margin: 40px 0;
}

.detail img {
    max-width: 20%;
    /* Verklein de afbeelding naar 40% van de breedte */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.detail div {
    flex: 1;
    padding: 20px;
}

.detail h3 {
    color: red;
    font-size: 32px;
    margin-bottom: 20px;
}

.detail p {
    font-size: 18px;
    line-height: 1.6;
    color: aliceblue;
}

/* Links-afbeelding standaard */
.detail.left-img img {
    order: -1;
    /* Zet afbeelding aan de linkerkant */
}

/* Rechts-afbeelding */
.detail.right-img img {
    order: 1;
    /* Zet afbeelding aan de rechterkant */
}

/* Hover effect op de afbeelding */
.detail img:hover {
    transform: scale(1.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .detail {
        flex-direction: column;
        text-align: center;
    }

    .detail img {
        max-width: 100%;
        /* Op mobiel blijven de afbeeldingen op volledige breedte */
    }

    .detail div {
        padding-top: 20px;
    }
}



.result {
    text-align: center;
    padding: 40px;
    background-color: rgb(18, 26, 38);
    /* Donkere achtergrond voor consistentie */
    color: aliceblue;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    /* Schaduw voor diepte */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result:hover {
    transform: translateY(-10px);
    /* Lift effect bij hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    /* Grotere schaduw bij hover */
}

.result a {
    text-decoration: none;
    color: aliceblue;
}

.result img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    /* Schaduw rond de afbeelding */
}


.result {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.result h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.result a {
    text-decoration: none;
    color: inherit;
}

.result video {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .result h2 {
        font-size: 1.5rem;
    }

    .result video {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .result h2 {
        font-size: 1.2rem;
    }

    .result video {
        max-width: 100%;
    }
}