/**
Theme Name: I-match
Author: I-match child theme
Author URI: https://i-match.nl
Description: I-match child theme 2024
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: i-match
Template: astra
*/




/* Container padding om de 'Een greep uit onze cases' titel ruimte te geven */
.projecten-slider-wrapper {
    padding-top: 40px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    max-width: 100%;
}

/* De kaart zelf */
.case-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: #002c3d !important;
}

/* De afbeelding: exact de verhouding uit je screenshot */
.case-image-container {
    width: 100%;
    aspect-ratio: 1.57 / 1; /* Matcht ongeveer de 767x410 uit je inspect tool */
    border-radius: 8px; /* Iets subtielere hoeken zoals in de foto */
    overflow: hidden;
    margin-bottom: 20px;
}

.case-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover img {
    transform: scale(1.05); /* Subtiele zoom bij hover */
}

/* Titels: Bold en strak */
.case-content h3 {
    font-size: 22px !important;
    font-weight: 800 !important; /* Extra dik voor de 'Vastgoed' look */
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.5px;
}

/* De kleine tekst (bijv. 'Onderwijs' of 'Webshop, Maatwerk') */
.case-meta {
    font-size: 15px;
    color: #6d6d6d;
    font-weight: 400;
}

/* Zet de progressiebalk onder de kaarten in plaats van bovenaan */
.project-swiper .swiper-pagination-progressbar {
    top: auto !important;
    bottom: 0 !important;
    height: 2px !important;
    background: rgba(0,0,0,0.1); /* Lichte achtergrond van de balk */
}
.project-swiper {
    padding-bottom: 60px !important; /* Pas dit getal aan voor meer of minder ruimte */
}
.project-swiper .swiper-pagination-progressbar-fill {
    background: #43a047 !important; /* Jouw groene kleur voor de actieve voortgang */
}