/* =========================================
   SPECIFIEKE OPMAAK BOOMVERZORGING
========================================= */

.boom-section {
    border-left: 5px solid #27ae60;
}

    .boom-section h2 {
        color: #27ae60;
        margin-top: 0;
    }

.section-logo {
    float: right;
    max-width: 160px;
    height: auto;
    margin: 0 0 20px 20px;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.expertise-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-bottom: 3px solid #3C5E38;
}

    .expertise-item h3 {
        margin-top: 0;
        color: #3C5E38;
        font-size: 1.1em;
    }

/* =========================================
   SLIDESHOW (GETEMDE VERSIE)
========================================= */
.slideshow-container {
    max-width: 800px; /* Kleiner gemaakt voor een rustiger beeld */
    position: relative;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slides {
    display: none;
}

    .slides img {
        vertical-align: middle;
        width: 100%;
        height: 400px; /* Hoogte beperkt om het 'overheersende' effect te stoppen */
        object-fit: cover; /* Vult het kader zonder vervorming */
    }

/* Navigatie pijltjes */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    background-color: rgba(0,0,0,0.2);
    border-radius: 0 4px 4px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.6);
    }

/* Bolletjes onder de foto */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #3C5E38;
    }

/* =========================================
   CONTACT / CTA SECTIE
========================================= */
.cta-box-boom {
    background-color: #3C5E38;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.boom-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: #3C5E38;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

    .boom-cta-btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

/* =========================================
   MOBIEL
========================================= */
@media (max-width: 768px) {
    .section-logo {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }

    .slides img {
        height: 250px;
    }
    /* Nog compacter op mobiel */
    .cta-links {
        flex-direction: column;
        align-items: center;
    }

    .boom-cta-btn {
        width: 85%;
    }
}
