
/* =========================================================
   VARIABLES — STYLE HÔTEL LUXUEUX
========================================================= */

:root{
    --ble-fonce:#071A2F;
    --ble:#0B2745;
    --or:#D4AF37;
    --or-clair:#E8C85A;
    --blanc:#ffffff;
    --gris:#f5f7fa;
    --gris-texte:#667085;

    --ombre:0 10px 30px rgba(7,26,47,.12);
    --ombre-forte:0 15px 40px rgba(0,0,0,.22);

    --transition:.35s ease;
}


/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:"Segoe UI", Arial, sans-serif;
    background:#fff;
    color:#071A2F;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}


/* =========================================================
   HEADER
========================================================= */

.tet{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
}

header{
    width:100%;
    height:70px;

    background:rgba(7,26,47,.96);
    backdrop-filter:blur(12px);

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 5px 25px rgba(0,0,0,.25);

    border-bottom:1px solid rgba(212,175,55,.15);
}


/* Container */

.logo-containeur{
    width:92%;
    max-width:1400px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}


/* =========================================================
   LOGO
========================================================= */

.logohotel{
    display:flex;
    align-items:left;
    margin-left: -50px;
}

.logohotel img{
    width:200px;
    height:200px;

    object-fit:contain;

    transition:var(--transition);

    filter:drop-shadow(0 5px 10px rgba(0,0,0,.25));
}




/* =========================================================
   MENU
========================================================= */

.liens{
    display:flex;
    align-items:center;
    gap:38px;
}

.liens a{
    position:relative;

    color:#fff;

    font-size:15px;
    font-weight:600;

    letter-spacing:.4px;

    padding:10px 0;

    transition:var(--transition);
}


/* Ligne sous menu */

.liens a::after{
    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    width:0;
    height:3px;

    background:linear-gradient(
        90deg,
        var(--or),
        var(--or-clair)
    );

    border-radius:10px;

    transform:translateX(-50%);

    transition:var(--transition);
}

.liens a:hover{
    color:var(--or);
}

.liens a:hover::after{
    width:100%;
}


/* Page active */

.liens a.active{
    color:var(--or);
}

.liens a.active::after{
    width:100%;
}


/* =========================================================
   HERO — STYLE PREMIUM / RESTAURANT
========================================================= */

.hotel1{
    width:100%;
    height:100vh;
    min-height:680px;

    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
}


/* =========================================================
   IMAGE BACKGROUND
========================================================= */

.hotel1 img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    /* Fè image a pi fonse pou texte a vizib */
    filter:brightness(70%);

    transform:scale(1.02);

    transition:transform 1s ease;
}


/* Zoom dous */

.hotel1:hover img{
    transform:scale(1.05);
}


/* =========================================================
   OVERLAY
========================================================= */

.hotel1::before{
    content:"";

    position:absolute;
    inset:0;

    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(7,26,47,.82) 0%,
            rgba(7,26,47,.62) 35%,
            rgba(7,26,47,.25) 70%,
            rgba(7,26,47,.08) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.welc{
    position:relative;

    z-index:2;

    width:90%;
    max-width:1350px;

    margin:0 auto;

    text-align:left;

    color:white;

    padding-top:50px;
}


/* =========================================================
   PETIT TITRE
========================================================= */

.welc h1{
    margin:0 0 25px;

    color:#F5A000;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:17px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:5px;

    line-height:1.4;
}


/* =========================================================
   GRAND TITRE
========================================================= */

.welc h2{
    margin:0 0 30px;

    max-width:850px;

    color:#fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:clamp(55px,6vw,88px);

    font-weight:700;

    line-height:1.02;

    letter-spacing:-2px;

    text-transform:none;

    text-shadow:
        0 5px 20px rgba(0,0,0,.25);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.welc h3{
    max-width:850px;

    margin:0 0 40px;

    color:#f5f5f5;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:20px;

    font-weight:400;

    line-height:1.7;

    letter-spacing:.2px;
}


/* =========================================================
   BOUTONS HERO
========================================================= */

.hero-buttons{
    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}


/* Bouton principal */

.decouv{
    position:relative;

    top:auto;
    left:auto;

    transform:none;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:265px;

    padding:18px 32px;

    border-radius:50px;

    background:#F5A000;

    color:#fff;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    border:2px solid #F5A000;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* Hover bouton principal */

.decouv:hover{
    background:#fff;

    color:#071A2F;

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35);
}


/* =========================================================
   2ÈME BOUTON
========================================================= */

.reserver{
    position:relative;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:275px;

    padding:18px 32px;

    border-radius:50px;

    background:transparent;

    color:#fff;

    border:1.5px solid rgba(255,255,255,.75);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.reserver:hover{
    background:#fff;

    color:#071A2F;

    border-color:#fff;

    transform:translateY(-4px);
}


/* =========================================================
   RESPONSIVE TABLETTE
========================================================= */

@media(max-width:1000px){

    .hotel1{
        min-height:650px;
    }

    .welc{
        width:88%;
        padding-top:40px;
    }

    .welc h1{
        font-size:15px;
        letter-spacing:4px;
    }

    .welc h2{
        font-size:clamp(48px,7vw,70px);
        max-width:700px;
    }

    .welc h3{
        font-size:18px;
        max-width:650px;
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media(max-width:768px){

    .hotel1{
        height:100vh;
        min-height:650px;
    }


    /* Overlay plus foncé sou téléphone */

    .hotel1::before{
        background:
            linear-gradient(
                90deg,
                rgba(7,26,47,.88),
                rgba(7,26,47,.55)
            );
    }


    .welc{
        width:88%;

        padding-top:80px;
    }


    .welc h1{
        font-size:13px;

        letter-spacing:3px;

        margin-bottom:18px;
    }


    .welc h2{
        font-size:clamp(40px,11vw,58px);

        line-height:1.05;

        letter-spacing:-1px;

        margin-bottom:22px;
    }


    .welc h3{
        font-size:16px;

        line-height:1.6;

        margin-bottom:30px;
    }


    .hero-buttons{
        flex-direction:column;

        align-items:flex-start;

        gap:12px;
    }


    .decouv,
    .reserver{
        width:100%;

        min-width:0;

        max-width:310px;

        padding:15px 25px;

        font-size:15px;
    }

}


/* =========================================================
   TRÈS PETIT ÉCRAN
========================================================= */

@media(max-width:480px){

    .hotel1{
        min-height:700px;
    }

    .welc{
        padding-top:100px;
    }

    .welc h1{
        font-size:11px;
        letter-spacing:2.5px;
    }

    .welc h2{
        font-size:39px;
    }

    .welc h3{
        font-size:14px;
    }

}

/* =========================================================
   TITRES DE SECTION
========================================================= */

.servi{
    text-align:center;

    margin:80px 0 45px;

    font-size:clamp(28px,4vw,40px);

    color:var(--ble-fonce);

    font-family:Georgia,serif;

    letter-spacing:2px;

    position:relative;
}

.servi::after{
    content:"";

    width:80px;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--or),
        var(--or-clair)
    );

    display:block;

    margin:15px auto 0;

    border-radius:10px;
}


/* =========================================================
   SERVICES
========================================================= */
.nos{
    width:92%;
    max-width:1400px;

    margin:0 auto 80px;

    display:grid;

    grid-template-columns:repeat(6, 1fr);

    gap:18px;

    align-items:stretch;
}


/* Card */

.service{
    width:100%;
    min-height:180px;

    background:#fff;

    padding:25px 10px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(7,26,47,.12);

    border:1px solid rgba(7,26,47,.06);

    transition:.35s ease;

    cursor:pointer;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    position:relative;
    overflow:hidden;
}



/* Icon */

.service i{
    font-size:40px;

    color:var(--or);

    margin-bottom:18px;

    transition:var(--transition);
}

.service:hover i{
    transform:
        scale(1.15)
        translateY(-3px);

    color:var(--or-clair);
}


/* Titre */

.service h1{
    font-size:17px;

    color:var(--ble-fonce);

    font-weight:600;

    transition:var(--transition);
}



/* =========================================================
   GALERIE / IMAGES
========================================================= */

.resimag{
    width:92%;

    max-width:1400px;

    margin:0 auto 80px;

    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:18px;

    padding:10px 0;
}


/* Card image */

.services{
    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--ombre);

    background:#fff;

    position:relative;

    aspect-ratio:4/3;
}


/* Image */

.services img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:
        transform .6s ease,
        filter .6s ease;
}


/* Overlay galerie */

.services::after{
    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(7,26,47,.45),
        transparent 55%
    );

    opacity:0;

    transition:var(--transition);
}


/* Hover */

.services:hover img{
    transform:scale(1.10);

    filter:brightness(.85);
}

.services:hover::after{
    opacity:1;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:
        linear-gradient(
            135deg,
            #071A2F,
            #0B2745
        );

    color:#fff;

    margin-top:80px;
}


/* Container */

.footer-container{
    width:92%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:45px;

    padding:65px 0;
}


/* Titres */

.footer-col h3{
    color:var(--or);

    margin-bottom:20px;

    font-size:20px;

    font-family:Georgia,serif;

    position:relative;

    padding-bottom:10px;
}

.footer-col h3::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:45px;
    height:2px;

    background:var(--or);
}


/* Texte */

.footer-col p,
.footer-col a{
    color:#d6dce3;

    font-size:14px;

    line-height:1.9;

    text-decoration:none;

    transition:var(--transition);
}


/* Liens */

.footer-col a:hover{
    color:var(--or);

    padding-left:5px;
}


/* Liste */

.footer-col ul{
    list-style:none;

    padding:0;
}

.footer-col li{
    margin-bottom:10px;
}


/* Icons */

.footer-col i{
    color:var(--or);

    margin-right:8px;

    width:18px;
}


/* =========================================================
   SECTION ÉTUDIANTS
========================================================= */

.footer-etudiants{
    border-top:
        1px solid rgba(255,255,255,.12);

    border-bottom:
        1px solid rgba(255,255,255,.12);

    padding:30px 20px;

    text-align:center;
}

.footer-etudiants h4{
    color:var(--or);

    margin-bottom:18px;

    font-size:18px;
}


/* Liste étudiants */

.etudiants-list{
    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;
}


/* Nom étudiant */

.etudiants-list span{
    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.08);

    padding:9px 16px;

    border-radius:30px;

    font-size:14px;

    transition:var(--transition);
}


/* Hover */

.etudiants-list span:hover{
    background:var(--or);

    color:var(--ble-fonce);

    transform:translateY(-3px);

    box-shadow:
        0 5px 15px rgba(0,0,0,.2);
}


/* =========================================================
   BAS FOOTER
========================================================= */

.footer-bottom{
    text-align:center;

    padding:20px;

    font-size:13px;

    color:#aeb7c2;

    background:
        rgba(0,0,0,.15);
}


/* =========================================================
   TABLETTE
========================================================= */

@media(max-width:1200px){

    .nos{
        grid-template-columns:
            repeat(3,1fr);
    }

    .resimag{
        grid-template-columns:
            repeat(3,1fr);
    }

}


/* =========================================================
   TABLETTE PETITE
========================================================= */

@media(max-width:900px){

    header{
        height:70px;
    }

    .logo-containeur{
        width:94%;
    }

    .logohotel img{
        width:65px;
        height:65px;
    }

    .liens{
        gap:22px;
    }

    .liens a{
        font-size:14px;
    }

    .welc h1{
        font-size:17px;
        letter-spacing:5px;
    }

    .welc h3{
        font-size:17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    /* Header */

    header{
        height:auto;

        padding:12px 0;
    }

    .logo-containeur{
        flex-direction:column;

        gap:12px;
    }

    .logohotel img{
        width:60px;
        height:60px;
    }

    .liens{
        width:100%;

        justify-content:center;

        flex-wrap:wrap;

        gap:10px 18px;
    }

    .liens a{
        font-size:13px;
    }


    /* Hero */

    .hotel1{
        min-height:620px;
    }

    .welc{
        top:45%;
    }

    .welc h1{
        font-size:14px;

        letter-spacing:4px;

        margin-bottom:12px;
    }

    .welc h2{
        font-size:40px;

        line-height:1.15;
    }

    .welc h3{
        font-size:15px;

        letter-spacing:1.5px;
    }

    .decouv{
        top:68%;

        padding:14px 30px;

        font-size:14px;
    }


    /* Services */

    .nos{
        width:90%;

        grid-template-columns:
            repeat(2,1fr);

        gap:15px;
    }

    .service{
        min-height:160px;

        padding:22px 10px;
    }

    .service i{
        font-size:32px;
    }

    .service h1{
        font-size:14px;
    }


    /* Galerie */

    .resimag{
        width:90%;

        grid-template-columns:
            repeat(2,1fr);

        gap:12px;
    }


    /* Footer */

    .footer-container{
        width:88%;

        grid-template-columns:1fr;

        gap:30px;

        padding:45px 0;
    }

}


/* =========================================================
   TRÈS PETIT MOBILE
========================================================= */

@media(max-width:480px){

    .liens{
        gap:8px 13px;
    }

    .liens a{
        font-size:12px;
    }

    .welc h2{
        font-size:32px;
    }

    .welc h3{
        font-size:13px;
    }

    .nos{
        grid-template-columns:1fr;
    }

    .service{
        min-height:145px;
    }

    .resimag{
        grid-template-columns:1fr;
    }

    .services{
        aspect-ratio:16/10;
    }

    .servi{
        margin-top:60px;

        font-size:28px;
    }

}


/* =========================================================
   ACCESSIBILITÉ — RÉDUIT LES ANIMATIONS
========================================================= */

@media(prefers-reduced-motion:reduce){

    *{
        scroll-behavior:auto !important;

        animation:none !important;

        transition:none !important;
    }

}

