
body {
    background-color: #F3F2F2;
    margin: 0;
}

header {
      background-color: white;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

.logo {
  height: 170px;
  max-width: 100%;
}

.zone-gauche,
.zone-centre,
.zone-droite {
  display: flex;
  align-items: center;
}

.zone-gauche,
.zone-droite {
  flex: 1;
}

.barre_recherche {
    background-color: #FF50A5;
    width: 250px;
    height: 40px;
    border-radius: 30px;
    border: none;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    padding-left: 25px;
    font-family: 'Oleo Script', cursive;
    font-size: 1.3rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    margin-top: -150px;
}

.barre_recherche:hover {
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.6);
  }
.barre_recherche::placeholder {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
}

.bouton1{
  background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    width: 47px;
    height: 37px;
    position: relative;
    left: 230px;
    top: -40px;
}


.cabines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  .cabines a {
    aspect-ratio: 1 / 1;
    display: block;
  }
  
  .cabines img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
    cursor: pointer;
    display: block;
  }
  
  .cabines img:hover {
    transform: scale(1.08);
  }

.texte {
    font-family: 'Jost', sans-serif;
    color: #FA0487;
    text-align: center;
    font-size: 1.4rem;
    width: 53vw;
    margin-top: 90px;
    box-sizing: border-box;
}

.bouton2 {
  display: inline-block;
  text-align: center;
  line-height: 43px;
  text-decoration: none;
  background-color: #FF2E9E;
  color: white;
  width: 250px;
  border-radius: 30px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  left: 270px;
  top: 100px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  transform: scale(1);
}

.bouton2:hover {
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.6);
  transform: scale(1.02);
}

  
.logo2 {
  width: 70vh;
  position: relative;
  left: 150px;
  top: 100px;
}

  nav {
      background-color: #FF50A5;
      text-align: center;
      height: 70px;
    }

    nav ul {
      margin: 0;
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: white;
      font-family: 'Jost', sans-serif;
      font-weight: bold;
      font-size: 1.3rem;
    }

  nav ul li a:hover {
  border-bottom: 2px solid white;
}
.background {
  background-image: url(img/background4.png);
  background-size: cover;
  background-position: center;
  height: 110vh;
}


.footer {
  background-color: #FF50A5;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Jost', sans-serif;
  margin-top: 100px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  margin: 5px 0;
}

.footer-col a:hover {
  text-decoration: underline;
  color: #FFD6EC;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.8;
}

  
  