.hoornaar-section {
    border-left: 5px solid #e67e22;
}

    .hoornaar-section h2 {
        color: #e67e22;
        margin-top: 0;
    }

.section-logo {
    float: right;
    max-width: 180px;
    height: auto;
    margin: 0 0 20px 20px;
}

.trap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

    .trap-grid img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

.cta-box-hoornaar {
    background-color: #e67e22;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

    .cta-box-hoornaar a {
        display: inline-block;
        margin-top: 20px;
        padding: 15px 35px;
        background-color: white;
        color: #e67e22;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        text-transform: uppercase;
    }

@media (max-width: 768px) {
    .section-logo {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
}

/* CTA Container voor de knoppen */
.cta-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hoornaar-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: #2b4228;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

    .hoornaar-cta-btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

/* Mobiele weergave: knoppen onder elkaar */
@media (max-width: 600px) {
    .cta-links {
        flex-direction: column;
        align-items: center;
    }

    .hoornaar-cta-btn {
        width: 80%;
        margin-top: 10px;
    }
}
