/* ===========================
   HEADER
=========================== */

.tet{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
}

header{
    width:100%;
    height:90px;
    background:#071A2F;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.logo-containeur{
    width:90%;
    max-width:1400px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logohotel img{
    width:200px;
    height:200px;
    
}

.logohotel img:hover{
    transform:scale(1.08);
}

.liens{
    display:flex;
    align-items:center;
    gap:35px;
}

.liens a{
    text-decoration:none;
    color:#ffffff;
    font-size:17px;
    font-weight:600;
    position:relative;
    transition:.3s;
    letter-spacing:.5px;
}

/* Animation sous le menu */

.liens a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:3px;
    background:#D4AF37;
    transition:.4s;

}

.liens a:hover::after{

    width:100%;

}

.liens a:hover{

    color:#D4AF37;

}

/* Page active */

.liens a.active{

    color:#D4AF37;

}

.liens a.active::after{

    width:100%;

}

/* Responsive */

@media(max-width:900px){

    header{

        height:auto;
        padding:20px 0;

    }

    .logo-containeur{

        flex-direction:column;

    }

    .liens{

        margin-top:20px;
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;

    }

    .logohotel img{

        width:65px;
        height:65px;

    }

}



/*CORPS DE LA PAGE*/
.servi{
    text-align:center;
    margin:60px 0 35px;
    font-size:38px;
    color:#071A2F;
    font-family:Georgia, serif;
    letter-spacing:2px;
}

.servi::after{
    content:"";
    width:100px;
    height:4px;
    background:#D4AF37;
    display:block;
    margin:12px auto;
    border-radius:5px;
}



/*=========================================
        GRILLE PRINCIPALE 3 COLONNES
=========================================*/

.serve{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    padding:0 25px 40px;
}


/*=========================================
        BLOCS DE GALERIE
=========================================*/

.chambr,
.rest,
.confe,
.pisci,
.sports,
.parkin{
    background:white;
    border-radius:18px;
    padding:18px;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}


/*=========================================
        TITRES CENTRÉS
=========================================*/

.chamb,
.res,
.conf,
.pisc,
.sport,
.parki{
    text-align:center;
    font-size:20px;
    color:#071A2F;
    margin-bottom:18px;
    font-weight:bold;
    letter-spacing:1px;
}


/*=========================================
        LIGNE DES 3 IMAGES
=========================================*/

.gal1,
.gal2,
.gal3,
.gal4,
.gal5,
.gal6{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    flex:1;
}


/*=========================================
        IMAGES ALIGNÉES
=========================================*/

.gal1 img,
.gal2 img,
.gal3 img,
.gal4 img,
.gal5 img,
.gal6 img{
    width:calc(33.33% - 7px);
    height:200px;
    object-fit:cover;
    border-radius:12px;
    transition:.4s;
    display:block;
}


/*=========================================
        EFFET HOVER
=========================================*/

.gal1 img:hover,
.gal2 img:hover,
.gal3 img:hover,
.gal4 img:hover,
.gal5 img:hover,
.gal6 img:hover{
    transform:scale(1.05);
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}


/*=========================================
        TABLETTE
=========================================*/

@media(max-width:992px){

.serve{
    grid-template-columns:repeat(2, 1fr);
}

.gal1 img,
.gal2 img,
.gal3 img,
.gal4 img,
.gal5 img,
.gal6 img{
    height:180px;
}

}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:576px){

.serve{
    grid-template-columns:1fr;
}

.gal1,
.gal2,
.gal3,
.gal4,
.gal5,
.gal6{
    flex-direction:column;
}

.gal1 img,
.gal2 img,
.gal3 img,
.gal4 img,
.gal5 img,
.gal6 img{
    width:100%;
    height:220px;
}

}




/*PIED DE PAGE*/

.footer{

    background:#071A2F;

    color:white;

    margin-top:50px;

}


.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    padding:45px 25px;

}


.footer-col h3{

    color:#D4AF37;

    margin-bottom:15px;

    font-size:20px;

}


.footer-col p,
.footer-col a{

    color:#d6d6d6;

    font-size:14px;

    line-height:1.8;

    text-decoration:none;

}


.footer-col a:hover{

    color:#D4AF37;

}


.footer-col ul{

    list-style:none;

    padding:0;

}


.footer-col li{

    margin-bottom:10px;

}


.footer-col i{

    color:#D4AF37;

    margin-right:8px;

}


/* Section étudiants */

.footer-etudiants{

    border-top:1px solid rgba(255,255,255,.12);

    border-bottom:1px solid rgba(255,255,255,.12);

    padding:22px 20px;

    text-align:center;

}


.footer-etudiants h4{

    color:#D4AF37;

    margin-bottom:12px;

    font-size:18px;

}


.etudiants-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

}


.etudiants-list span{

    background:rgba(255,255,255,.08);

    padding:8px 14px;

    border-radius:20px;

    font-size:14px;

    transition:.3s;

}


.etudiants-list span:hover{

    background:#D4AF37;

    color:#071A2F;

}


/* Bas du footer */

.footer-bottom{

    text-align:center;

    padding:16px;

    font-size:13px;

    color:#b8b8b8;

}
