/**
 * Home – kaarten hero (Shop, Bereken leasebedrag, Offerte opvragen)
 */

.home-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
}

.home-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    min-height: 280px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.home-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.home-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-card--shop .home-card__bg {
    background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=600&q=80');
}

.home-card--berekenen .home-card__bg {
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=600&q=80');
}

.home-card--offerte .home-card__bg {
    background-image: url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=600&q=80');
}

.home-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.home-card__label {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 1rem;
    line-height: 1.3;
}

.home-card__link:hover {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .home-cards {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
    }

    .home-card {
        aspect-ratio: 16 / 9;
        min-height: 200px;
    }

    .home-card__label {
        font-size: 1.125rem;
    }
}
