*,
*::after,
*::before {
    box-sizing: border-box;
}

:root {
    --color-button: #D9D9D9;
    --color-button-hover: #A50C92;
    --color-background1: #190C2F;
    --color-background2: #5E2897;
    --color-button-slider: #835385;
    --color-text: #ffffff;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

*:focus-visible {
    outline: 2px var(--color-button-hover) solid;
}

body {
    margin: 0;
    background-color: #190C2F;
}

.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.skip-link {
    background-color: #f9dc4a;
    border: solid 3px #000;
    color: #000;
    padding: 0.625em 0.9375em;
    text-decoration: none;
}

.skip-link:not(:focus):not(:active) {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.skip-link:focus {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 999;
}

.nav-wrapper {
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #100423;
}

.top-nav {
    height: 7.5vh;
    display: grid;
    grid-template-columns: 25vw 75vw;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

a {
    text-decoration: none;
}

.top-nav a,
footer a {
    color: #979797;
    font-size: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
    align-self: center;
}

.top-nav a:hover,
footer a:hover {
    color: #FFF;
    transition: color 0.3s ease;
}

.top-nav a.link-nav::after,
footer a.footer-links::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.top-nav a.link-nav:hover::after,
footer a.footer-links:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.top-nav .logo-nav {
    justify-self: start;
    align-self: center;
    margin-left: 2rem;
    height: 50px;
    width: 50px;
}
.search-bar {
    width: 150px;
    height: 30px;
    border-radius: 50px;
    position: relative;
}
button[type="submit"]{
    position: absolute;
    cursor: pointer;
    right: 35px;
    top: 18px;
    height: 30px;
    width: 30px;
    border: none;
    background-color: transparent;
}
.search-icon{
    height: 20px;
    width: 20px;
}

.top-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    justify-self: end;
}

.top-nav ul:last-child {
    margin-right: 2rem;
}

.placement-header {
    z-index: -1;
    background-image: url(img/fond-accueil.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placement-header img {
    height: 130px;
    width: 130px;
    position: absolute;
    top: 8%;
}

.placement-header h1 {
    font-size: 6.8rem;
    font-family: "Jura", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    position: relative;
    top: 55px;
}

h1>span {
    position: relative;
    bottom: 0;
    transition-property: bottom;
    transition-duration: 1.3s;
    transition-timing-function: ease;
    cursor: default;
}

h1:hover span:hover {
    position: relative;
    bottom: 40px;
    transition-property: bottom;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.slogan {
    color: var(--color-text);
    position: relative;
    bottom: 35px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.button {
    background-color: var(--color-button);
    color: #000000;
    text-align: center;
    height: 90px;
    padding-top: 25px;
    width: 350px;
    border-radius: 200px;
    font-size: 2rem;
    font-family: "Bruno Ace", sans-serif;
    transition-property: color, font-size, background-color;
    transition-duration: 1s;
    transition-timing-function: ease;
}

.button:hover {
    font-size: 1.8rem;
    background-color: var(--color-button-hover);
    color: #FFF;
    transition-property: color, font-size, background-color;
    transition-duration: 1s;
    transition-timing-function: ease;
}

.button:focus {
    border: solid var(--color-button-hover) 5px;
}


/* Arrow & Hover Animation */
.container {
    position: relative;
    top: 130px;
    margin-left: 16px;
    animation: floatY 2s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

#more-arrows {
    width: 105px;
    height: 91px;
}

#more-arrows:hover polygon {
    fill: #FFF;
    transition: all .4s ease-out;
}

#more-arrows:hover .arrow-bottom {
    transform: scale(1.4) translateY(-18px);
}

#more-arrows:hover .arrow-top {
    transform: scale(1.4) translateY(18px);
}

polygon {
    fill: #FFF;
    transform: scale(1.4, 1.4);
    transition: all .4s ease-out;
}

.arrow-middle {
    opacity: 0.75;
}

.arrow-top {
    opacity: 0.5;
}

section {
    min-height: 100vh;
}

.section-contenu1 {
    /* border: #f9dc4a solid 1px; */
    height: 100vh;
    margin-top: 100vh;
    padding-top: 7.5vh;
    z-index: 3;
    background-image: url(img/fond-section.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 20% 20% 10% 1fr;
    color: white;
    filter: drop-shadow(0px 20px 30px #000000) drop-shadow(0px -20px 30px #000000);
}

.section-contenu1 h2 {
    font-size: 2.9rem;
    font-family: "Bruno Ace", sans-serif;
    grid-row: 2;
    grid-column: 1;
    align-self: center;
    margin-left: 50px;
}

.section-contenu1>p {
    font-size: 1rem;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 500px;
    grid-column: 1;
    align-self: center;
    grid-row: 3;
    margin-left: 90px;
}

.section-contenu1 div {
    grid-column: 2;
    justify-self: center;
}

.section-contenu1 img {
    height: 750px;
    animation: floatY 3s infinite;
    filter: drop-shadow(10px 25px 20px #000000);
}

.link-concept {
    grid-column: 1;
    text-align: center;
    align-self: start;
    margin-top: 100px;
    grid-row: 4;
}

.link-concept>a {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 2rem;
}

.link-concept:hover {
    position: relative;
    animation: floatX 2s ease-in-out infinite;
}

@keyframes floatX {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(10px);
    }

    100% {
        transform: translatex(0px);
    }
}

.link-concept>a:focus {
    border: solid #ffffff 3px;
}

.section-contenu2 {
    background-color: var(--color-background1);
}

.section-contenu2 h2 {
    color: white;
    padding-top: 100px;
    padding-bottom: 40px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Bruno Ace", sans-serif;
    font-size: 2.4rem;
    text-align: center;
}

footer {
    height: 10vh;
    font-family: "Jura", sans-serif;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    color: #FFF;
    background-color: #100423;
}

.footer-link ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    justify-self: end;
    margin: 0;
}

.footer-link .logo-nav {
    height: 50px;
    width: 50px;
}

footer p {
    position: absolute;
    right: 5%;
}


/* Slider */

.js-slider {
    position: relative;
    /* border: red solid; */
    overflow: hidden;
}

.js-photos {
    position: relative;
    display: flex;
    transition: all 1s ease;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* border: green solid; */
    height: 490px;
    margin-left: 75px;
    right: 415px
}

.image-slider {
    height: 400px;
    width: 400px;
    object-fit: cover;
    transition: all 1s ease;
    /* border: var(--color-button-hover) solid 1px; */
}

.image-slider.salle1 {
    background-position: center;
}

.image-slider.salle3 {
    background-position: center;
}

.image-slider.salle4 {
    background-position: center;
}

.image-slider.salle5 {
    background-position: center;
}

.image-slider-milieu {
    position: relative;
    height: 450px;
    width: 450px;
    object-fit: cover;
    background-position: center;
    transition: all 1s ease;
}

.clone-modif {
    height: 450px;
    width: 450px;
}

.row-dots-slider {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 100px;
}

.dots {
    height: 25px;
    width: 25px;
    background-color: #000000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
    border: solid 1px #ffffff;
}

.dots1 {
    background-color: white;
}


.js-navigation {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slideRight,
.slideLeft {
    color: #ffffff;
    position: absolute;
    width: 8vw;
    height: 45vh;
    top: 5vh;
    background-color: var(--color-button-slider);
    opacity: 0.9;
    border: none;
    cursor: pointer;
    transition: all 1s ease;
}

.slideRight {
    right: 0;
    border-radius: 30px 0px 0px 30px;
}

.slideLeft {
    border-radius: 0px 40px 40px 0px;
}

.slideRight:hover,
.slideLeft:hover {
    opacity: 1;
    background-color: var(--color-button-hover);
    transition: all 1s ease;
}

.fleche {
    border: solid #ffffff;
    border-width: 0 4px 4px 0;
    height: 40px;
    width: 40px;
    display: inline-block;
    padding: 4px;
}

.droite {
    margin-right: 15px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.gauche {
    margin-left: 15px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
/* ---------------------------------------- Le Concept ------------------------------------------------ */

.title-concept {
    font-family: "Bruno Ace", sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 0;
}
.section-concept {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.neon-img{
    width: 300px;
}

.section-concept p{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    color: var(--color-text);
    text-align: center;
    margin-top: 20px;
    width: 60vw;

}
.button-le-concept {
    background-color: var(--color-button);
    color: #000000;
    text-align: center;
    height: 70px;
    width: 320px;
    border-radius: 200px;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 60px;
    font-family: "Bruno Ace", sans-serif;
    transition-property: color, font-size, background-color;
    transition-duration: 1s;
    transition-timing-function: ease;
}

.button-le-concept:hover {
    font-size: 1.35rem;
    background-color: var(--color-button-hover);
    color: var(--color-text);
    transition-property: color, font-size, background-color;
    transition-duration: 1s;
    transition-timing-function: ease;
}
.concept1{
    padding: 30px 30px 30px 30px;
    border: solid 3px rgba(240, 46, 170, 0.4);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
    margin-top: 50px;
}

.concept2{
    padding: 30px 30px 30px 30px;
    border: solid 3px rgba(240, 46, 170, 0.4);
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    margin-top: 100px;
}

.concept3{
    padding: 30px 30px 30px 30px;
    border: solid 3px rgba(240, 46, 170, 0.4);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
    margin-top: 100px;
}
.concept4{
    padding: 30px 30px 30px 30px;
    border: solid 3px rgba(240, 46, 170, 0.4);
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    margin-top: 100px;
    margin-bottom: 40px;
}

/* ---------------------------------------- Mentions Légales ------------------------------------------------ */

.section-mentions{
    font-family: 'popins', sans-serif;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.details-mentions li{
    text-align: start;
    margin-bottom: 5px;
    margin-top: 5px;
}
.details-mentions summary:before {
    color: var(--color-button-slider);
    position: absolute;
    left: -100px;
    font-size: 1.75rem;
    line-height: 0;
    margin-top: 0.75rem;
    font-weight: 200;
    transform-origin: center;
    transition: 200ms linear;
  }
  .details-mentions[open] summary:before {
    transform: rotate(45deg);
  }

/* ---------------------------------------- À Propos ------------------------------------------------ */

.title-a-propos{
    font-family: "Bruno Ace", sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 0;
}
.section-a-propos {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
} 
  /* Card container */
  .card {
    position: relative;
    max-width: 400px;
  }
  /* setting padding based on even or odd */
  .card:nth-child(odd) {
    padding: 30px 0 30px 30px;
  }
  .card:nth-child(even) {
    padding: 30px 30px 30px 0;
  }
  /* Global ::before */
  .card::before {
    content: "";
    position: absolute;
    width: 50%;
    border: solid var(--color-button-slider);
  }
  
  /* Setting the border of top, bottom, left */
  .card:nth-child(odd)::before {
    left: 0px;
    top: -4.5px;
    bottom: -4.5px;
    border-width: 5px 0 5px 5px;
    border-radius: 50px 0 0 50px;
  }
  
  /* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
  @media only screen and (max-width: 400px) {
    .card:nth-child(odd)::before {
      top: -5px;
      bottom: -5px;
    }
  }
  
  /* Setting the border of top, bottom, right */
  .card:nth-child(even)::before {
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 5px 5px 5px 0;
    border-radius: 0 50px 50px 0;
  }
  
  /* Removing the border if it is the first card */
  .card:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
  }
  
  /* Removing the border if it is the last card  and it's odd */
  .card:last-child:nth-child(odd)::before {
    border-bottom: 0;
    border-bottom-left-radius: 0;
  }
  
  /* Removing the border if it is the last card  and it's even */
  .card:last-child:nth-child(even)::before {
    border-bottom: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Information about the timeline */
  .info {
    display: flex;
    flex-direction: column;
    background: var();
    color: rgb(186, 184, 184);
    border-radius: 10px;
    padding: 10px;
  }

  .info > p {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 0.75rem;
    color: #ffffff;
    text-align: center;
  }
  
  /* Title of the card */
  .title {
    font-size: 1.5rem;
    font-family: "Jura", sans-serif;
    color: var(--color-text);
    position: relative;
  }
  
  /* Timeline dot  */
  .title::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 999px;
    border: 3px solid var(--color-button-hover);
  }
  
  /* text right if the card is even  */
  .card:nth-child(even) > .info > .title {
    text-align: right;
  }
  
  /* setting dot to the left if the card is odd */
  .card:nth-child(odd) > .info > .title::before {
    left: -45px;
  }
  
  /* setting dot to the right if the card is odd */
  .card:nth-child(even) > .info > .title::before {
    right: -45px;
  }

.img-a-propos {
    border: solid 1px #ffffff;
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
    animation: floatY 4s ease-in-out infinite;
}

.description-img-a-propos{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

.footer-a-propos {
    position: relative;
    top: 1250px;
}

/* ---------------------------------------- Choix de la Salle ------------------------------------------------ */
section.section-nos-salles{
    background-image: url(img/fond-section.jpg);
}
.presentation-produits {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    gap: 45px;
    margin-right: 40px;
}
.placement-tri-salles{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.titre-nos-salles {
    padding-top: 75px;
    color: #ffffff;
    font-family: "Bruno Ace", sans-serif;
    font-size: 4rem;
    margin-bottom: 10;
    text-align: center;
}
.reinitialiser{
    font-family: 'Jura', sans-serif;
    font-size: 1.5rem;
    color: var(--color-text);
    margin-left: 45%;
    cursor: pointer;
    transition: color 0.5s ease;
}
.reinitialiser:hover{
    color: var(--color-button-hover);
    transition: color 0.5s ease;
}
.titre-tri{
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.titre-filtre{
    font-size: 2rem;
}

p.no-result, p.result{
    font-family: 'poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--color-text);
    text-align: center;
    margin-top: 20px;

}

.block-tri-filtre{
    height: 600px;
    width: 30vw;
    color: #ffffff;
    border:solid 1px #ffffff;
    background-color: var(--color-background1);
    font-family: 'Jura', sans-serif;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 30px;
}

.block-filtre>ul{
    gap: 10px;
}
.block-filtre a{
    color: var(--color-text);
    transition: color 0.5s ease;
}

.block-filtre a:hover{
    color: var(--color-button-hover);
    transition: color 0.5s ease;
}

details {
    color: #ffffff;
    cursor: pointer;
    font-family: 'Jura', sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

details>a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.5s ease;
}

details a:hover {
    text-decoration: none;
    color: var(--color-button-hover);
    transition: color 0.5s ease;
}

.block-choix-salle {
    font-family: 'Jura', sans-serif;
    width: 65vw;
    height: 28vh;
    border: #FFF solid 1px;
    display: grid;
    grid-template-columns: 2vw 17.5vw 12vw 21.5vw 12vw;
    grid-template-rows: 1.5vh 25vh 1.5vh;
    color: #ffffff;
    transition: border 0.3s ease;
    background-color: var(--color-background1);
    border-radius: 30px;
}
.block-choix-salle:hover{
    border: #ffffff solid 5px;
    transition: border 0.3s ease;
}
.block-choix-salle:last-child{
    margin-bottom: 30px;
}
.block-choix-salle > .room-name{
    font-size: 2rem;
    grid-column: 4 / 5;
    grid-row: 2/3;
    text-align: center ;
    align-self: center;
}

.block-choix-salle .image-presentation {
    width: 253px;
    height: 171px;
    max-height: 171px;
    object-fit: cover;
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: center;
    border: #ffffff solid 1px;
}
.block-choix-salle > .category{
    grid-column: 4 / 5;
    grid-row: 2/3;
    text-align: center ;
    align-self: flex-end;
}

.block-choix-salle > .duration{
    grid-column: 5/6;
    grid-row: 2/3;
    align-self: flex-end;
    text-align: center;
}
.block-choix-salle > .difficulty{
    grid-column: 5/6;
    grid-row: 2/3;
    align-self: flex-start;
    text-align: center;
}
/* ---------------------------------------- Page Salle ------------------------------------------------ */
.background-video {
    height: 350px;
    width: 100vw;
    object-fit:cover;
    z-index: -1;
    filter: blur(2px) brightness(0.60);
}

.video1{
    object-position: 0 -15px;
}
.video4{
    object-position: 0 -1000px;
}
/* .video5{
    object-position: 0 -950px;
} */

.lineh {
    display: flex;
    align-items: center;
  
    /* largeur max */
    max-width: 1200px;
  
    margin-right: auto;
    margin-left: auto;
  
    margin-top: 50px;
    margin-bottom: 50px;
  }

.line {
    width: 100%;
    border-bottom: 1px solid var(--color-text);
  }
  
  h1.salle-nom {
    font-family: 'Bruno Ace', sans-serif;
    text-align: center;
    color: var(--color-text);
    font-size: 2.5rem;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: normal;
    white-space: nowrap;
    margin-left: 20px;
    margin-right: 20px;
  }

  .placement-page-salle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }

  .block-info-salle{
    font-family: 'Bruno Ace', sans-serif;
    color: var(--color-text);
    width: 350px;
    height: 470px;
    border: var(--color-text) solid;
    margin-left: 100px;
  }

  .description-salle{
    color: var(--color-text);
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1.3rem;
    width: 700px;
    margin-right: 200px;
  }

  .h2-info-salle{
    font-family: 'Bruno Ace', sans-serif;
    color: var(--color-text);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 40px;
 
  }

  .block-info-salle p{
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
  }

  .reservation-btn-salle{
    position: absolute;
    top: 1050px;
    left: 37%;

  }


/* --------------------------------------- Reservation Page 1 ------------------------------------------------ */

.section-no-scroll{
    min-height: 90vh;
}

.section-resa{
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
}


h1.titre-reservation {
    color: #ffffff;
    position: absolute;
    font-size: 2.5rem;
    font-family: "Bruno Ace", sans-serif;
    margin: auto;
    padding-top: 9vh;

}

.placement-salles {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
}

.placement-salles>a {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-salle {
    height: 70vh;
    width: 15vw;
}

h2.nom-salle {
    position: absolute;
    color: #ffffff;
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    z-index: 1;
    transition: all 0.5s ease;
}

.salle1 {
    background-image: url(img/casino-game.jpg);
    filter: brightness(35%);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 1s ease;
}

a:hover>.salle1 {
    filter: brightness(80%);
    transition: all 1s ease;
}

.salle2 {
    background-image: url(img/bar-game.jpg);
    filter: brightness(35%);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

.section-salle.salle2 {
    background-position: -180px;
}

a:hover>.salle2 {
    filter: brightness(80%);
    transition: all 1s ease;
}

.salle3 {
    background-image: url(img/egypt-game.jpg);
    filter: brightness(35%);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 1s ease;
}

.section-salle.salle3 {
    background-position: -80px;
}

a:hover>.salle3 {
    filter: brightness(80%);
    transition: all 1s ease;
}

.salle4 {
    background-image: url(img/space-game.jpg);
    filter: brightness(35%);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 1s ease;
}

.section-salle.salle4 {
    background-position: -50px;
}

a:hover>.salle4 {
    filter: brightness(80%);
    transition: all 1s ease;
}

.salle5 {
    background-image: url(img/secret-room-game.jpg);
    filter: brightness(35%);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 1s ease;
}

.section-salle.salle5 {
    background-position: -50px;
}

a:hover>.salle5 {
    filter: brightness(80%);
    transition: all 1s ease;
}



/* --------------------------------------- Confirmation Resa Page ----------------------------------- */

.confirmation-title{
    font-size: 4rem;
    font-family: "Jura", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    justify-content: center;
    align-items: center;
}

.confirmation-link{
    font-size: 1rem;
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}
.confirmation-link:hover{
    position: relative;
    animation: floatX 2s ease-in-out infinite;
}
.confirmation-text{
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}
.confirmation-arrow{
    padding-left: 10px;
    font-size: 3rem;
}
/* --------------------------------------- FAQ ----------------------------------- */

.title-faq{
    font-family: "Bruno Ace", sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

details[open] summary ~ * {
    animation: open 0.3s ease-in-out;
  }
  
  @keyframes open {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  details.faq summary::-webkit-details-marker {
    display: none;
  }
  
  details.faq summary {
    width: 100%;
    padding: 30px 30px;
    border-top: 1px solid var(--color-button-slider);
    position: relative;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 300;
    list-style: none;
  }
  
  details.faq summary:before {
    content: "+";
    color: var(--color-button-slider);
    position: absolute;
    font-size: 1.75rem;
    line-height: 0;
    margin-top: 0.75rem;
    left: 200px;
    font-weight: 200;
    transform-origin: center;
    transition: 200ms linear;
  }
  details.faq[open] summary:before {
    transform: rotate(45deg);
    font-size: 2rem;
  }
  details.faq summary {
    outline: 0;
  }
  details.faq p {
    font-family: 'poppins', sans-serif;
    margin: auto;
    font-size: 0.95rem;
    padding-top: 1rem;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 80%;
  }
/* --------------------------------------- Media Queries ----------------------------------- */

@media screen and (max-width: 1150px) {
    .section-contenu1 img {
        display: none;
    }

    .section-contenu1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .section-contenu1>p {
        margin: 0;
    }

    .section-contenu1 .link-concept {
        align-self: center;
        justify-self: center;
    }
    .section-no-scroll{
        justify-self: flex-end;
    }
    .section-resa{
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    h1.titre-reservation {
        color: #ffffff;
        position: absolute;
        font-size: 2rem;
        font-family: "Bruno Ace", sans-serif;
        padding-top: 9vh;
    }
    h2.nom-salle {
        position: absolute;
        color: #ffffff;
        font-size: 1.6rem;
        font-family: "Poppins", sans-serif;
        z-index: 1;
        transition: all 0.5s ease;
    }
    
    .placement-salles {
        display: flex;
        flex-direction: column;
        margin-top: 80px;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .placement-salles>a {
        margin-top: 50px;
        height: 30vh;
        width: 70vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom:30px
    }
    
    .section-salle {
        min-height: 30vh;
        min-width: 70vw;
    }
    .section-salle.salle2 {
        background-position: 0px;
    }
    .section-salle.salle1 {
        background-position: 0px;
    }
    .section-salle.salle3 {
        background-position: 0px;
    }
    .section-salle.salle4 {
        background-position: 0px;
    }
    .section-salle.salle5 {
        background-position: 0px;
    }
}

@media screen and (max-width: 1000px) {

    .placement-tri-salles{
        flex-direction: column;
        align-items: center;
    }
    .block-tri-filtre{
        width: 100vw;
        height: auto;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .block-tri{
        align-self: flex-start;
        margin-top: 50px;
        text-align: center;
        margin-left: 50px;
        margin-right: 50px;
    }

    .presentation-produits{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .block-choix-salle{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40vw;
        min-width: 300px;
        height: 400px;
    }

    .block-choix-salle .image-presentation{
        margin-top: 20px;
        width: 30vw;
        min-width:200px;
        height: 180px;
        object-fit: cover;
    }

    .block-choix-salle > .category{
        margin-top: 0;
        text-align: center;
        align-self: center;
    }
    
    .block-choix-salle > .duration{
        position: absolute;
        margin-top: 360px;
        margin-right: 20px;
    }
    .block-choix-salle > .difficulty{
        position:  absolute;
        margin-top: 360px;
        margin-left: 20px;
    }
}
