*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(36, 36, 36);
}

/* ================================================================ POLICES =============================================================== */

@font-face {
  font-family: 'BowlbyOne';
  src: url('fonts/BowlbyOne-Regular.ttf') format('truetype');
}

@font-face {
  font-family:'Satoshi';
  src: url('polices/Satoshi-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Rubik';
  src: url('polices/RubikGlitch-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Sigmar';
  src: url('polices/Sigmar-Regular.ttf') format('truetype');
}

/* ============================================================ RECHERCHE ================================================================== */



form{
  display: flex;
  gap: 30px;
  border: 1px solid #ffffff;
  padding: 20px 15px;
  justify-content: center;
  width: fit-content;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: rgb(255, 255, 255);
  margin-top: 50px;
}



input,select,option{
  border-radius: 5px;
  height: 25px;
  padding: 0 10px;
}

.titre_rech {
  font-family: 'Rubik', sans-serif;
}



/* ------------------------------------------ AFFICHAGE SALLES --------------------------------------------------- */

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 50px;
}

.liste {
  width: 25%;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: white;
  position: relative;
  padding-bottom:20px;
}

.liste:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.liste a {
  display: block;
  color: inherit; 
  text-decoration: none;
}

.liste a:hover {
  text-decoration: none; /* Pour empêcher le soulignement au survol */
}


.liste h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Sigmar', sans-serif;
}

.liste p {
  margin-bottom: 10px;
  font-family: 'Sigmar', sans-serif;
}


.liste img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: solid rgb(255, 255, 255) 1px;
  margin-bottom: 15px;
}


.liste:last-child {
  justify-content: center;
}


p.msg{
  padding: 70px 0;
  height: 100vh;
  color: white;
  font-family: 'Sigmar', 'sans-serif' ;
}


