/* =========================================================
   ONZE VAKANTIEHUIZEN
   Landgoed Het Grote Zand
   ========================================================= */

.hgz-accommodations {
    position: relative;
    padding: 70px 0 64px;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(235, 230, 218, 0.45),
            transparent 42%
        ),
        #f8f8f5;
}

.hgz-accommodations,
.hgz-accommodations * {
    box-sizing: border-box;
}

.hgz-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.hgz-accommodations__header {
    text-align: center;
    margin-bottom: 38px;
}

.hgz-section-label {
    margin: 0 0 8px;
    color: #6d7c6b;
    font-size: 13px;
    font-weight: 500;
}

.hgz-accommodations__header h2 {
    margin: 0;
    color: #27372d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hgz-accommodations__subtitle {
    margin: 10px 0 0;
    color: #667067;
    font-size: 15px;
}


/* =========================
   GRID
   ========================= */

.hgz-accommodations__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* =========================
   CARD
   ========================= */

.hgz-accommodation {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e3df;
    border-radius: 7px;
    box-shadow:
        0 2px 5px rgba(26, 41, 31, 0.04),
        0 10px 25px rgba(26, 41, 31, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hgz-accommodation:hover {
    transform: translateY(-5px);
    box-shadow:
        0 6px 14px rgba(26, 41, 31, 0.08),
        0 18px 35px rgba(26, 41, 31, 0.10);
}


/* =========================
   IMAGE
   ========================= */

.hgz-accommodation__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.62 / 1;
    overflow: hidden;
    background: #dfe4dc;
}

.hgz-accommodation__image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.12),
        transparent 40%
    );
}

.hgz-accommodation__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hgz-accommodation:hover .hgz-accommodation__image img {
    transform: scale(1.045);
}


/* =========================
   FAVORIET
   ========================= */

.hgz-accommodation__favorite {
    position: absolute;
    z-index: 2;
    top: 13px;
    right: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    color: #ffffff;
    border-radius: 50%;
    background: rgba(32, 47, 38, 0.22);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.hgz-accommodation__favorite:hover {
    background: #456d48;
    transform: scale(1.08);
}

.hgz-accommodation__favorite svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================
   CONTENT
   ========================= */

.hgz-accommodation__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px 19px 18px;
}

.hgz-accommodation__content h3 {
    margin: 0 0 10px;

    color: #334239;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 600;
}


/* =========================
   DETAILS
   ========================= */

.hgz-accommodation__details {
    display: flex;
    align-items: center;
    gap: 17px;

    margin-bottom: 14px;

    color: #6e766f;
    font-size: 13px;
}

.hgz-accommodation__details span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hgz-accommodation__details svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================
   DESCRIPTION
   ========================= */

.hgz-accommodation__description {
    flex-grow: 1;

    margin: 0 0 22px;

    color: #6c746d;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================
   BUTTON
   ========================= */

.hgz-accommodation__footer {
    margin-top: auto;
}

.hgz-accommodation__button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 43px;

    padding: 10px 18px;

    color: #ffffff !important;
    background: #3f6b43;

    border: 1px solid #3f6b43;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.hgz-accommodation__button:hover {
    color: #ffffff !important;
    background: #2f5635;
    border-color: #2f5635;
}

.hgz-accommodation__button:active {
    transform: translateY(1px);
}


/* =========================
   CTA ONDER DE KAARTEN
   ========================= */

.hgz-accommodations__cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.hgz-accommodations__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 12px 28px;

    color: #34453a !important;
    background: transparent;

    border: 1px solid #829086;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.hgz-accommodations__button:hover {
    color: #ffffff !important;
    background: #3f6b43;
    border-color: #3f6b43;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {

    .hgz-container {
        width: min(100% - 48px, 900px);
    }

    .hgz-accommodations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

}


/* =========================
   MOBIEL
   ========================= */

@media (max-width: 680px) {

    .hgz-accommodations {
        padding: 52px 0;
    }

    .hgz-container {
        width: calc(100% - 32px);
    }

    .hgz-accommodations__header {
        margin-bottom: 28px;
    }

    .hgz-accommodations__header h2 {
        font-size: 30px;
    }

    .hgz-accommodations__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hgz-accommodation__image {
        aspect-ratio: 1.7 / 1;
    }

    .hgz-accommodation__content {
        padding: 18px;
    }

    .hgz-accommodations__cta {
        margin-top: 24px;
    }

    .hgz-accommodations__button {
        width: 100%;
    }

}
