/* ================= COULEURS ================= */

:root {
    --vert-fonce: #181D19;
    --vert-moyen: #353D37;
    --vert-intermediaire: #2a312c;
    --beige: #F5CD92;
    --beige-clair: #FFF8ED;
    --blanc: #ffffff;
    --transparent: rgba(0, 0, 0, 0);
}

/* ================= RESET ================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #FFF8ED;
        overflow-x: hidden;

}


/* ================= ANIMATIONS SCROLL REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================= HERO SECTION ================= */

.intro-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.intro-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.intro-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 73%;
    height: 100%;
    background: linear-gradient(to right, var(--vert-fonce) 0%, var(--vert-intermediaire) 50%, var(--vert-moyen) 75%, var(--transparent) 100%);
    z-index: 1;
}

/* ================= NAVBAR INDEX ================= */

.navbar-custom {
    position: absolute;
    top: 20px; left: 60px; right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    height: 90px;
}

.nav-left { display: flex; align-items: center; gap: 60px; height: 100%; }

.logo { height: 130px; width: auto; object-fit: contain; transition: 0.3s; }

.logo-link { display: flex; align-items: center; text-decoration: none; transition: opacity 0.3s ease; }
.logo-link:hover { opacity: 0.8; }

.nav-links { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; align-items: center; }
.nav-links a { text-decoration: none; color: var(--blanc); font-size: 15px; font-weight: 400; transition: 0.3s; }
.nav-links a:hover { color: var(--beige); }

.btn-reserver {
    background-color: var(--vert-moyen);
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--beige);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.btn-reserver:hover { background-color: var(--beige); color: var(--vert-fonce); }

/* ================= NAVBAR PILULE (pages secondaires) ================= */

.navbar-custom.nav-chambres {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    height: 65px;
    background-color: #181D19;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 9999;
    overflow: visible !important;
}

.nav-chambres .nav-left { display: flex; align-items: center; height: 100%; position: relative; overflow: visible !important; }

.nav-chambres .logo {
    height: 120px !important;
    width: auto;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: block !important;
}

.nav-chambres .nav-links { margin-left: 170px; display: flex; gap: 35px; list-style: none; padding: 0; margin-bottom: 0; }
.nav-chambres .nav-links a { color: var(--blanc); text-decoration: none; font-size: 15px; }

.mt-nav { margin-top: 0 !important; padding-top: 70px; }

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

.hero-content {
    position: absolute;
    top: 65%; left: 120px;
    transform: translateY(-50%);
    color: var(--beige);
    z-index: 5;
}

.hero-content h1 { font-family: 'Marcellus', serif; font-size: 63px; line-height: 1.05; letter-spacing: 2px; }
.hero-content p { margin-top: 25px; font-size: 14px; color: var(--blanc); }

.btn-voir {
    display: inline-block;
    margin-top: 35px;
    background-color: var(--beige);
    color: #2e332f;
    padding: 11px 20px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-voir:hover { background-color: var(--vert-fonce); color: var(--beige); }

/* ================= SECTION ACCUEIL ================= */

#accueil-section { background-color: #FFF8ED; padding: 100px 0; }

.accueil-container { width: 85%; margin: 0 auto; }

.accueil-titres { text-align: center; margin-bottom: 60px; }
.accueil-titres h2 { color: #181D19; font-family: 'Marcellus', serif; font-size: 48px; margin-bottom: 15px; }
.accueil-titres h3 { color: #F5CD92; font-family: 'Marcellus', serif; font-size: 32px; }

.accueil-content { display: flex; align-items: flex-start; gap: 60px; }
.accueil-images { position: relative; flex: 0 0 620px; }

.img-maison { width: 470px; border-radius: 25px; display: block; }
.img-superposee { position: absolute; width: 270px; top: 70px; right: -48px; border-radius: 20px; border: 4px solid #F5CD92; }

.accueil-texte { flex: 1; max-width: 650px; margin-left: 40px; }
.accueil-texte p { font-size: 16px; color: #181D19; line-height: 1.7; margin-bottom: 20px; }

/* ================= SECTION CHAMBRES (index) ================= */

#chambres-section { background: var(--beige-clair); padding: 40px 0; }

.chambres-container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    background: linear-gradient(135deg, var(--vert-fonce), var(--vert-intermediaire), var(--vert-moyen));
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 0;
    gap: 40px;
    overflow: hidden;
}

.chambres-text { max-width: 520px; color: white; text-align: left; margin: auto; }
.chambres-subtitle { color: #d7d7d7; font-size: 14px; margin-bottom: 10px; }
.chambres-text h2 { font-family: 'Marcellus', serif; font-size: 52px; color: var(--beige); margin-bottom: 25px; }
.chambres-description { font-size: 15px; line-height: 1.7; margin-bottom: 16px; }

.btn-chambres {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    background: var(--beige);
    color: var(--vert-fonce);
    padding: 11px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-chambres:hover { background: var(--beige-clair); }

.chambres-images { display: flex; flex-direction: column; margin-left: auto; }
.chambre-img-top { width: 340px; height: 260px; object-fit: cover; border-radius: 20px 0 0 0; }
.chambre-img-bottom { width: 340px; height: 260px; object-fit: cover; border-radius: 0 0 0 20px; }

/* ================= ACTIVITÉS ================= */

.activites-section { padding: 50px 5%; }
.activites-title { font-family: 'Marcellus', serif; font-size: 48px; margin-bottom: 10px; }
.activites-subtitle { color: #6b6b6b; margin-bottom: 50px; }
.activites-carousel-container { position: relative; }
.activites-carousel { overflow: hidden; }
.activites-wrapper { display: flex; gap: 40px; transition: transform 0.5s ease; }

.activite-card { flex: 0 0 340px; max-width: 340px; }
.activite-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 25px; margin-bottom: 20px; transition: 0.4s; }
.activite-card img:hover { transform: scale(1.05); }
.activite-card h3 { font-size: 19px; margin-bottom: 10px; }
.activite-card p { color: #555; font-size: 13px; line-height: 1.5; margin-bottom: 20px; }

.btn-voir1 {
    display: inline-block;
    padding: 7px 20px;
    border: 0.8px solid #c8a96e;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 10px;
    background-color: #F0D5A0;
    color: #2e332f;
}
.btn-voir1:hover { background: #e8c882; color: #181D19; font-weight: 500; }

.carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgb(252, 248, 244);
    border: none;
    width: 45px; height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.carousel-arrow.left { left: -52px; }
.carousel-arrow.right { right: -52px; }
.carousel-arrow:hover { background: #ffefd8; }

/* ================= AVIS ================= */

.avis-section { padding: 40px 5%; }
.avis-header { margin-bottom: 50px; }
.title-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.avis-title { font-family: 'Marcellus', serif; font-size: 50px; margin: 0; font-weight: 300; }
.stars-title { color: #f2c94c; font-size: 18px; }
.note { font-size: 22px; font-weight: 600; }
.based-text { font-style: italic; color: #666; }
.avis-subtitle { margin-top: 8px; color: #777; font-size: 14px; }

.avis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.avis-card {
    background: linear-gradient(180deg, #39483e, #566058);
    padding: 25px;
    border-radius: 15px;
    color: white;
    min-height: 150px;
    position: relative;
    padding-bottom: 70px;
    transition: transform 0.3s ease;
}
.avis-card:hover { transform: translateY(-4px); }

.stars-card { color: #f2c94c; margin-bottom: 10px; }
.avis-text { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.avis-author { display: flex; align-items: center; gap: 12px; position: absolute; bottom: 35px; left: 25px; }
.avatar { width: 35px; height: 35px; object-fit: cover; }
.author-name { font-size: 13px; margin: 0; }
.author-source { font-size: 12px; opacity: 0.8; margin: 0; }

/* ================= CONTACT ================= */

.contact-section { padding: 70px 0; }
.contact-title { font-family: 'Marcellus', serif; font-size: 50px; margin-bottom: 10px; color: #181D19; }
.contact-subtitle { color: #666; margin-bottom: 50px; font-size: 15px; }

.contact-box {
    background: linear-gradient(135deg, #1f2b24, #566058);
    border-radius: 15px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    color: white;
}

.contact-info { width: 35%}
.info-block { margin-bottom: 40px; }
.info-block h3 { color: #e4c892; font-size: 14px; letter-spacing: 1px; margin-bottom: 5px; }
.info-block p { font-size: 16px; opacity: 0.9; }
.contact-divider { width: 1px; height: 250px; background: rgba(255,255,255,0.4); }

.contact-form { width: 65%; display: flex; flex-direction: column; gap: 20px; }
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 14px;
    outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.7); }
.contact-form textarea { height: 120px; resize: none; }
.contact-form button {
    width: 150px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #e4c892;
    color: #1f2b24;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover { background: #f0d8a8; transform: translateY(-2px); }

/* ================= FOOTER ================= */

.footer { background: linear-gradient(90deg, #2e332f, #4a5149); color: white; }
.footer-gallery { display: grid; grid-template-columns: repeat(5, 1fr); }
.footer-gallery img { width: 100%; height: 200px; object-fit: cover; }
.footer-content { display: flex; justify-content: space-around; align-items: flex-start; padding: 50px 10% 60px 10%; }
.footer-logo img { width: 180px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h3 { font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; color: var(--beige); }
.footer-column a { text-decoration: none; color: white; font-size: 14px; }
.footer-column p { font-size: 14px; }
.footer-column a:hover { color: #F5CD92; }

/* ================= PAGE CHAMBRES — PRÉSENTATION ================= */

.presentation-flex { display: flex; align-items: flex-start; gap: 80px; padding-top: 50px; }
.gold-frame { border: 3px solid var(--beige); border-radius: 30px; display: inline-block; }
.presentation-left { flex: 0 0 450px; }
.presentation-right { flex: 1; font-weight: 400; }
.reservez-bloc { margin-top: 40px; font-weight: 400; }

.black-icon-bar {
    background: var(--vert-fonce);
    display: flex;
    justify-content: space-around;
    padding: 20px 10px;
    border-radius: 50px;
    margin-top: 40px;
    color: white;
}
.icon-item { text-align: center; flex: 1; }
.icon-item i { display: block; font-size: 18px; margin-bottom: 8px; color: var(--beige); }
.icon-item span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; display: block; line-height: 1.2; font-weight: 300; }

/* ================= PAGE CHAMBRES — GRILLE ================= */

.chambres-bg-dark {
    background-color: var(--vert-fonce);
    background-size: cover;
    padding: 60px 20px;
    border-radius: 40px;
    margin: 40px auto;
    max-width: 1300px;
    text-align: center;
}

.chambres-container-vert {
    background: linear-gradient(180deg, #27332b, #38453a);
    border-radius: 50px;
    padding: 40px 20px;
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.chambres-header h2 { font-family: 'Marcellus', serif; font-size: 52px; color: var(--beige); margin-bottom: 25px; font-weight: 300; }
.chambres-header p { color: var(--blanc); opacity: 0.8; margin-bottom: 40px; font-size: 14px; }

.chambres-container-flex { display: flex; justify-content: center; gap: 20px; flex-wrap: nowrap; margin-top: 30px; }

.card-body {
    display: flex;
    flex-direction: column;
    height: 100%; /* S'assure que le corps prend toute la place */
}

.chambre-card-white {
    background: #FFFAF1;
    border-radius: 35px;
    padding: 15px;
    width: 23%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.chambre-card-white:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(0,0,0,0.25); }

.img-card { width: 100%; height: 140px; object-fit: cover; border-radius: 25px; margin-bottom: 10px; }
.card-title-underlined { font-family: 'Inter', sans-serif; font-size: 16px; text-decoration: underline; margin-bottom: 10px; color: #000; }
.card-list { list-style: none; font-size: 12px; color: #333; padding: 0; margin-bottom: 15px; line-height: 1.4; }
.card-list i { font-style: italic; }
.small-text { font-size: 11px; color: #666; margin-top: 5px; line-height: 1.3; }
.card-footer-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto }
.small-label { display: block; font-size: 10px; color: #666; }
.price-value { font-size: 24px; font-weight: bold; color: #000; }

.btn-black-rounded {
    background: #1D231F;
    color: var(--beige);
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 13px;
    transition: 0.3s;
}
.btn-black-rounded:hover { background: #000; transform: scale(1.05); }

.baby-note { color: var(--blanc); font-style: italic; margin-top: 30px; font-size: 14px; opacity: 0.8; }

/* ================= MENTIONS LÉGALES ================= */

.mt-nav-mentions { padding-top: 150px; background-color: var(--beige-clair); }

.mentions-container { width: 80%; max-width: 1100px; margin: 0 auto; padding-bottom: 80px; }

.mentions-title-main { font-family: 'Marcellus', serif; font-size: 50px; color: var(--vert-fonce); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.mentions-line { width: 100px; height: 3px; background: var(--beige); margin-bottom: 50px; }

.mentions-card-box {
    background: linear-gradient(135deg, #1f2b24, #566058);
    border-radius: 20px;
    padding: 35px;
    color: var(--blanc);
    height: 100%;
    transition: transform 0.3s ease;
}
.mentions-card-box:hover { transform: translateY(-5px); }
.mentions-card-box h3 { font-family: 'Marcellus', serif; color: var(--beige); font-size: 22px; margin-bottom: 20px; font-weight: 400; letter-spacing: 1px; }
.mentions-card-box p { font-size: 14px; line-height: 1.8; font-weight: 300; opacity: 0.9; margin-bottom: 10px; }
.mentions-card-box strong { color: var(--beige); font-weight: 500; }
.full-width-card { grid-column: 1 / -1; }

/* ================= MENU MOBILE (caché desktop) ================= */

.menu-mobile { display: none; }
.navbar-index-burger { display: none; }
.dropdown-menu, .nav-links { list-style: none !important; padding: 0 !important; }
.dropdown-item, .nav-links a { text-decoration: none !important; }

/* =================================================================
   RESPONSIVE — TABLETTES (max-width: 1024px)
================================================================= */
@media screen and (max-width: 1024px) {

    .accueil-container { width: 90%; }
    .accueil-content { flex-direction: column; align-items: center; gap: 40px; }
    .accueil-images { flex: none; width: 100%; max-width: 550px; display: flex; justify-content: center; }
    .accueil-texte { margin-left: 0; text-align: center; }

    .chambres-container { flex-direction: column; padding: 40px 30px; align-items: center; text-align: center; }
    .chambres-images { flex-direction: row; gap: 10px; width: 100%; justify-content: center; }
    .chambre-img-top, .chambre-img-bottom { width: 48%; height: 200px; border-radius: 20px; }

    .avis-grid { grid-template-columns: repeat(2, 1fr); }

    .chambres-container-flex { flex-wrap: wrap; justify-content: center; }
    .chambre-card-white { width: 45%; min-width: 220px; }
    .chambres-header h2 { font-family: 'Marcellus', serif; font-size: 40px; color: var(--beige); margin-bottom: 25px; font-weight: 300; }

}

/* =================================================================
   RESPONSIVE — MOBILES (max-width: 768px)
================================================================= */
@media screen and (max-width: 768px) {

    .logo { height: 100px !important; width: auto !important; object-fit: contain !important; position: static !important; transform: none !important; }
    .logo-link, .nav-logo { display: flex !important; align-items: center !important; }

    .navbar-custom { display: none !important; }

    .menu-mobile {
        display: block;
        position: fixed;
        top: 15px; left: 15px; right: 15px;
        z-index: 9999;
        overflow: visible;
    }

    .mobile-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(24, 29, 25, 0.97);
        padding: 0 20px;
        border-radius: 50px;
        width: 100%;
        height: 60px;
        overflow: hidden;
    }

    .mobile-burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px; height: 18px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 0;
        align-self: center;
    }
    .mobile-burger span { display: block; width: 100%; height: 2px; background-color: #ffffff; border-radius: 2px; }

    .mobile-nav {
        display: none;
        flex-direction: column;
        background-color: #181D19;
        border-radius: 15px;
        margin-top: 10px;
        overflow: hidden;
        border: 1px solid #353D37;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { color: #ffffff !important; padding: 14px 20px; font-size: 16px; text-decoration: none !important; border-bottom: 1px solid #2a312c; }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { background-color: #F5CD92; color: #181D19 !important; }
    .menu-mobile .dropdown { display: none !important; }

    /* Hero mobile */
    .intro-section { height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 60px; }
    .intro-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 1; }
    .intro-section::before { content: ""; position: absolute; inset: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(24,29,25,0.92) 0%, rgba(24,29,25,0.5) 40%, rgba(24,29,25,0) 100%); z-index: 2; }
    .hero-content { position: relative; z-index: 5; text-align: center; width: 90%; left: 0; top: 0; transform: none; }
    .hero-content h1 { font-size: 38px; line-height: 1.1; }
    .btn-voir { margin-top: 25px; width: 100%; max-width: 280px; display: inline-block; }

    #accueil-section { padding: 60px 0; }
    .accueil-container { width: 92%; }
    .accueil-titres h2 { font-size: 34px; }
    .accueil-titres h3 { font-size: 22px; }
    .accueil-content { flex-direction: column; align-items: center; gap: 30px; }
    .accueil-images { width: 100%; flex: none; }
    .img-maison { width: 100%; border-radius: 18px; }
    .img-superposee { display: none; }
    .accueil-texte { margin-left: 0; max-width: 100%; text-align: center; }

    .chambres-container { width: 95%; flex-direction: column; padding: 35px 20px; text-align: center; }
    .chambres-text { max-width: 100%; }
    .chambres-text h2 { font-size: 38px; }
    .chambres-images { flex-direction: row; gap: 8px; width: 100%; }
    .chambre-img-top, .chambre-img-bottom { width: 50%; height: 160px; border-radius: 14px; }

    .activites-title { font-size: 34px; }
    .carousel-arrow.left { left: -30px; }
    .carousel-arrow.right { right: -15px; }
    .activite-card { flex: 0 0 260px; max-width: 260px; }
    .activite-card img { height: 200px; }

    .avis-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .avis-title { font-size: 36px; }

    .contact-box { flex-direction: column; padding: 35px 20px; gap: 10px; }
    .contact-info { width: 100%; }
    .contact-form { width: 100%; }
    .contact-divider { width: 80%; height: 1px; margin: 0 auto; }
    .contact-title { font-size: 36px; }

    .footer-gallery { grid-template-columns: repeat(5, 1fr) !important; height: 80px; }
    .footer-gallery img { height: 80px; }
    .footer-content { flex-direction: row !important; justify-content: space-between; padding: 20px 4%; flex-wrap: nowrap; gap: 10px; }
    .footer-logo img { width: 80px; }
    .footer-column h3 { font-size: 10px; margin-bottom: 5px; }
    .footer-column a, .footer-column p { font-size: 9px; line-height: 1.3; }

    .chambres-container-flex { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .chambre-card-white { width: 85%; min-width: unset; }
    .chambres-container-vert { border-radius: 30px; padding: 30px 15px; }

    .presentation-flex { flex-direction: column; gap: 30px; }
    .presentation-left { flex: none; width: 100%; }

    .black-icon-bar { flex-wrap: nowrap; justify-content: space-between; gap: 5px; padding: 15px 10px; border-radius: 20px; }
    .icon-item { flex: 1; display: flex; flex-direction: column; align-items: center; min-width: 0; }
    .icon-item i, .icon-item img { font-size: 16px !important; width: 16px; margin-bottom: 5px; }
    .icon-item span, .icon-item p { font-size: 8px !important; text-transform: uppercase; white-space: nowrap; }

    .mt-nav-mentions { padding-top: 120px; }
    .mentions-container { width: 92%; padding-bottom: 50px; }
    .mentions-title-main { font-size: 32px; letter-spacing: 1px; }
    .mentions-line { margin-bottom: 35px; }
    .mentions-card-box { padding: 25px; margin-bottom: 20px; height: auto; }
    .mentions-card-box h3 { font-size: 20px; margin-bottom: 15px; }
    .mentions-card-box p { font-size: 13px; line-height: 1.6; }
    .full-width-card { grid-column: auto; }
}

/* =================================================================
   RESPONSIVE — PETITS MOBILES (max-width: 480px)
================================================================= */
@media screen and (max-width: 480px) {

    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 13px; }
    .btn-voir { padding: 9px 16px; font-size: 13px; }

    .accueil-titres h2 { font-size: 26px; }
    .accueil-titres h3 { font-size: 18px; }
    .chambres-text h2 { font-size: 30px; }
    .activites-title { font-size: 28px; }
    .avis-title { font-size: 28px; }
    .contact-title { font-size: 28px; }

    .avis-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .avis-card { padding: 18px; padding-bottom: 65px; min-height: 130px; }
    .avis-text { font-size: 12px; }

    .activite-card { flex: 0 0 85vw; max-width: 85vw; }
    .chambre-card-white { width: 95%; }
    .contact-box { padding: 25px 15px; }
    .contact-form button { width: 100%; }

    .footer-gallery { grid-template-columns: repeat(5, 1fr) !important; height: 60px; }
    .footer-gallery img { height: 60px; }
    .footer-content { flex-direction: row !important; justify-content: space-between; padding: 20px 5%; flex-wrap: nowrap; gap: 10px; }
    .footer-logo img { width: 100px; }
    .footer-column h3 { font-size: 8px; margin-bottom: 4px; }
    .footer-column a, .footer-column p { font-size: 8px; line-height: 1.2; }

    .mentions-title-main { font-size: 28px; }
    .mentions-card-box { padding: 20px; }
}