* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
    --rouge: #931813;
    --cyan: #8ACBC1;
    --orange: #F08159;
    --mauve: #A877B2;
    --rose: #F29EB7;
    --bleu: #4565AD;
    font-family: montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
}

[id] {
    scroll-margin-top: 10vh;
}

a {
    color: black;
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
    font-family: all-round-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-around;
    padding: 0 -10px 0 -10px;
    align-items: center;
    margin: 0 auto;
    height: 11vh;
    background-color: var(--bleu);
    color: white;
}

.logo{
    margin-top: 1rem;
    
}

header h1 {
    color: white;
    font-size: 2.2rem;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
}

ul {
    display: flex;
    list-style: none;
    padding: 0;
    padding-left: 20rem;
}

li {
    margin-left: 40px;
    transition: all 0.3s ease;
    position: relative;

}

li:hover {
    transform: scale(1.1);
}

/* Modifié*/
li::after {
    content: "";
    display: block;
    transform: scaleX(0);
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: transform 0.3s ease;
    transform-origin: right;
}

li:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

li a {
    font-family: all-round-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 1.2rem;
    text-transform: capitalize;
}

/* HERO */

.hero {
    height: 80vh;
    display: flex;
}

.model-3d {
    width: 60%;
}

.text-hero {
    width: 40%;
    color: white;
    text-align: left;
    padding-left: 4rem;
    justify-content: center;
    background-color:#151631 ;
    display: flex;
    flex-direction: column;
}

.text-hero h1{
    font-size: 6.4rem;
}


/* Etages */

.alldivs h2 {
    text-align:left;
    font-size: 4rem;
    color: var(--bleu);
    width: 60%;
    padding-left: 4rem;
    margin-bottom: 5rem;
}


.alldivs {
    width: 100%;
    /* Prendre toute la largeur de l'écran */
    min-height: 90vh;
    display: flex;
    padding-top: 9rem;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    /* Enlève les marges */
}

.single-bat {
    width: 100vw;
    /* Prendre toute la largeur de la fenêtre */
    margin-left: calc(50% - 50vw);
    /* Centrer l'élément */
    /* modifié */
    min-height: 50vh;
    margin-top: 2rem;
    display: flex;
}



.left {
    width: 60%;
}

.right {
    width: 40%;
    display: grid;
    justify-content: center;
}

.right h1 {
    font-size: 10rem;
    margin-left: 4rem;
    /* margin-top: 6rem; */
    display: inline-block;
    color: white;
}

.right div {
    display: flex;
    flex-direction: row;
}

.right div p {
    width: 40%;
    padding-bottom: 4.2rem;
    margin-top: 3rem;
    font-size: 1.1rem;
    font-weight: 510;
    text-align: left;
}

.titre-descrip {
    display: flex;
    align-items: center;
}

#canvas3d {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px;
    /* aspect-ratio:1 / 1.5 !important; */
}

.right p {
    margin-left: 4rem;
    width: 80%;
    font-size: 1.1rem;
    text-align: justify;
    color: white;
    /* Modifié */
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.one {
    background-color: var(--bleu);
}

.two {
    background-color: var(--rose);
}

.three {
    background-color: var(--cyan);
}

.four {
    background-color: var(--mauve);
}

.five {
    background-color: var(--orange);
}

.six {
    background-color: var(--rouge);
}

.room-desc{
    grid-row: 2/3;
    grid-column: 1/2;
}
.visible{
    opacity: 1;
    transition: opacity .3s ease;
}
.room-desc:not(.visible){
    opacity: 0;
}
/* Carroussel*/

.carroussel {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding:3rem;
    gap: 20px;
    background-color: #151631;
    /* border: solid 1px red; */
    width: 100vw;
    /* Modifié */
    overflow-x: hidden;
    overflow-y: hidden;
}

.single-carousel {
    display: flex;
    align-items: center;
    width: 550px;
    height: 350px;
    /* border: solid 1px blue; */
    border-radius: 12px;
    flex-shrink: 0;
    /* Glassmorphism */
    background: rgba(86, 244, 255, 0.767);
    /* Couleur de fond semi-transparente */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Ombre subtile pour ajouter de la profondeur */
    backdrop-filter: blur(10px);
    /* Flou d'arrière-plan */
    -webkit-backdrop-filter: blur(10px);
    /* Compatibilité avec Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Bordure translucide */

    /* Optionnel : Couleur de texte pour le contraste */
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5em;

}

.single-carousel .photo {
    width: 40%;
    border-radius: 50%;
    /* border: solid 1px blue; */
    overflow: hidden;
    margin: 0 1rem;
}

.photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* border: solid 1px red; */
    width: 50%;
    height: 50%;
    padding-left: 2rem;
}

/* Footer */

footer {
    display: flex;
    justify-content: space-between  ;
    align-items: center;
    margin-top: 2rem;
    height: 96px;
    background-color: var(--bleu);
}

footer ul {
    padding: 0;
}





/* //cursor custom */
button {
    padding: 15px;
    border: 0px;
    border: 2px solid rgb(0, 100, 200);
    color: rgb(0, 100, 200);
    transition: all .25s ease;
    background: transparent
  }

  button:hover {
    background: rgb(0, 100, 200);
    color: rgb(255,255,255);
  }


/* 
  /* //Maps*/
  

.maps{
    min-height: 60vh;
    border: solid 1px red;
    margin-top: 6rem;
    position: relative;
}

.maps img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    border: solid 1px red;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.marker img {
    width:70%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.tour-et-taxi {
    width: 300px;
    height: 300px;
    top: 0%;
    left:0%;
}

.heff {
    top: 20%;
    left: 0%;
}

.maritime {
    top: 40%;
    left: 0%;
}

.logo-heff {
    width: 200px;
    margin-right: 4rem;
}

