* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #2c2c2c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.div-wrapper-page {
    width: 100%;
}

.div-wrapper-page>.div-container-main {
    width: 100%;
}

.div-container-main>.div-inner-shell {
    width: 100%;
    position: relative;
}

.div-inner-shell>.div-content-zone>.div-content-zone-inner {
    width: 100%;
}

/* Sélecteur sur-spécifique et inutilement complexe */
.div-wrapper-page>.div-container-main>.div-inner-shell>.div-content-zone>.div-content-zone-inner>.div-section-block:nth-of-type(odd) {
    background-color: #faf9f7;
}

.div-wrapper-page>.div-container-main>.div-inner-shell>.div-content-zone>.div-content-zone-inner>.div-section-block:nth-of-type(even) {
    background-color: #ffffff;
}

/* ============================================ */
/* HEADER / NAVIGATION                           */
/* ============================================ */
.div-header-outer-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.div-header-outer-wrap>.div-header-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.div-header-inner-wrap>.div-logo-zone>.div-logo-zone-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 28px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.div-header-inner-wrap>.div-nav-zone>.div-nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
}

.div-nav-list>.div-nav-item>.div-nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.div-nav-list>.div-nav-item>.div-nav-link:hover {
    color: #b5742c;
}

.div-hero-outer-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.div-hero-outer-wrap>.div-hero-video-wrap>img.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.div-hero-outer-wrap>.div-hero-overlay-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.div-hero-outer-wrap>.div-hero-text-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.div-hero-text-wrap>.div-hero-text-inner>h1.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.div-hero-text-wrap>.div-hero-text-inner>p.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.div-hero-text-wrap>.div-hero-text-inner>.div-hero-cta-wrap>button.btn-hero-cta {
    background-color: #b5742c;
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.div-hero-text-wrap>.div-hero-text-inner>.div-hero-cta-wrap>button.btn-hero-cta:hover {
    background-color: #8f5a1f;
}

/* ============================================ */
/* SECTIONS GENERIQUES                            */
/* ============================================ */
.div-section-block {
    padding: 100px 40px;
}

.div-section-block>.div-section-inner-max-width {
    max-width: 1200px;
    margin: 0 auto;
}

.div-section-inner-max-width>.div-section-title-wrap>h2.section-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.div-section-inner-max-width>.div-section-title-wrap>p.section-main-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 17px;
    text-align: center;
    color: #6b6b6b;
    margin-bottom: 60px;
}

.div-destinations-grid-outer>.div-destinations-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.div-destinations-grid-inner>.div-destination-card-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.div-destination-card-wrap>.div-destination-image-wrap>.div-destination-image-inner>img.destination-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.div-destination-card-wrap>.div-destination-caption-wrap>.div-destination-caption-inner {
    padding: 25px 20px;
    background-color: #ffffff;
}

.div-destination-caption-inner>h3.destination-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.div-destination-caption-inner>p.destination-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.6;
}

.div-destination-caption-inner>span.destination-price {
    display: inline-block;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #b5742c;
}

/* ============================================ */
/* SECTION A PROPOS / IMAGE FULL                  */
/* ============================================ */
.div-about-outer-wrap>.div-about-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.div-about-grid-inner>.div-about-image-col>.div-about-image-col-inner>img.about-big-photo {
    width: 100%;
    border-radius: 4px;
}

.div-about-grid-inner>.div-about-text-col>.div-about-text-col-inner>h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 25px;
}

.div-about-grid-inner>.div-about-text-col>.div-about-text-col-inner>p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

/* ============================================ */
/* TEMOIGNAGES                                   */
/* ============================================ */
.div-testimonials-outer>.div-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.div-testimonials-grid>.div-testimonial-card>.div-testimonial-card-inner {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.div-testimonial-card-inner>.div-testimonial-quote-wrap>p.testimonial-quote {
    font-style: italic;
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.div-testimonial-card-inner>.div-testimonial-author-wrap>span.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
.div-footer-outer-wrap {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.div-footer-outer-wrap>.div-footer-inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.div-footer-inner-wrap>.div-footer-logo>p {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 20px;
}

.div-footer-inner-wrap>.div-footer-bottom-line>p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #999999;
    margin-top: 30px;
}

/* ============================================ */
/* RESPONSIVE (ajouté un peu au hasard, en vrac)  */
/* ============================================ */
@media (max-width: 900px) {

    .div-destinations-grid-inner,
    .div-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .div-about-grid-inner {
        grid-template-columns: 1fr;
    }

    h1.hero-title {
        font-size: 38px;
    }
}