* {
    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;
    border-radius: 10px;
    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-descript {
    display: grid;
    align-items: end;
}

#canvas3d {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px;
}

.right p {
    margin-left: 4rem;
    width: 80%;
    font-size: 1.1rem;
    text-align: justify;
    color: white;
    padding-bottom: 2.4rem;
    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;
}

.room-desc p {
    margin: 0;
    padding: 0;
    padding-bottom: 0 !important;
    padding-left: 5rem;
}

.right .visible {
    opacity: 1;
    transition: opacity .3s ease;
    flex-direction: column;
    gap: 10px;
}

.room-desc:not(.visible) {
    opacity: 0 !important;
}

/* Footer */

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

footer ul {
    padding: 0;
    padding-left: 15rem;
}

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

  /* //Maps*/


.maps {
    width: 90%;
    min-height: 60vh;
    margin: 0 auto;
    margin-top: 6rem;
    position: relative;
}

.maps a {
    position: absolute;
    z-index: 1;
    width: 4rem;
    top: 0%;
    left: 0%;
}

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

.maps .maritime {
    top: 5%;
    left: 16%;
}

.maps .tour-taxis {
    top: 10%;
    left: 20%;
}

.maps .heff {
    top: 24%;
    left:34%;
}

.maps .bar {
    top: 57%;
    left: 19%;
}

.maps .resto{
    top: 45%;
    left: 67%;
}

.maps .gare-nord {
    top: 41%;
    left: 90%;
}


