/* ================================================
   Locations d'exception Section — Premium
   ================================================ */

.hosting-discovery {
    width: calc(100% - 80px);
    padding: 0;
    /* Suppression marge négative — stats-strip visible au-dessus */
    margin: 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    border-radius: 32px;
}

.hosting-discovery__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    border-radius: 32px;
    overflow: hidden;
}

.hosting-discovery__video-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}

/* Overlay chaud brun profond — cohérent avec la marque bois */
.hosting-discovery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(28, 16, 8, 0.45) 0%,
        rgba(37, 22, 10, 0.52) 60%,
        rgba(20, 12, 5, 0.58) 100%
    );
    z-index: 1;
    border-radius: 32px;
}

.hosting-discovery__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 40px var(--padding-horizontal-large) 36px;
    position: relative;
    z-index: 2;
}

.hosting-discovery__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

/* ================================================
   Header — Tag + Titre + Sous-titre
   ================================================ */

.hosting-discovery__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 720px;
}

.hosting-discovery__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: rgba(252, 176, 90, 0.15);
    border: 1px solid rgba(252, 176, 90, 0.35);
    border-radius: 20px;
    color: var(--main-color);
    font-size: 11px;
    font-family: var(--font-rubik);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hosting-discovery__tag i {
    font-size: 11px;
    color: var(--main-color);
}

.hosting-discovery__title {
    color: var(--white);
    font-size: 46px;
    font-family: var(--font-helvetica);
    font-weight: var(--font-weight-bold);
    line-height: 56px;
    margin: 0;
}

/* Accent sur le mot "exception" via un span coloré dans le titre */
.hosting-discovery__title-accent {
    color: var(--main-color);
}

.hosting-discovery__subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-family: var(--font-rubik);
    font-weight: var(--font-weight-regular);
    margin: 0;
    line-height: 26px;
}

/* ================================================
   Property Cards Grid — 4 par ligne
   ================================================ */

.hosting-discovery__properties {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ================================================
   CTA Bas — "Voir toutes nos locations"
   ================================================ */

.hosting-discovery__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hosting-discovery__cta-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-family: var(--font-rubik);
    font-weight: var(--font-weight-regular);
}

.hosting-discovery__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid rgba(252, 176, 90, 0.6);
    border-radius: 50px;
    color: var(--main-color);
    font-size: 15px;
    font-family: var(--font-helvetica);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.hosting-discovery__cta i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.hosting-discovery__cta:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--dark1);
    box-shadow: 0 8px 28px rgba(252, 176, 90, 0.4);
}

.hosting-discovery__cta:hover i {
    transform: translateX(4px);
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 1100px) {
    .hosting-discovery__properties {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .hosting-discovery__title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 900px) {
    .hosting-discovery {
        width: 100%;
        margin: 0;
        min-height: 500px;
        border-radius: 0;
    }

    .hosting-discovery__video-bg,
    .hosting-discovery__overlay {
        border-radius: 0;
    }

    .hosting-discovery__container {
        padding: 56px var(--padding-horizontal-small) 64px;
    }

    .hosting-discovery__content {
        gap: 36px;
    }

    .hosting-discovery__properties {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hosting-discovery__title {
        font-size: 28px;
        line-height: 36px;
    }

    .hosting-discovery__subtitle {
        font-size: 15px;
    }
}
