body {
  box-sizing: border-box;
}

.vacance {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px auto;
  max-width: 900px;
}

.gastronomie img, .hebergement img {
  max-width: 100%; 
  height: auto;
  border-radius: 15px; 
  display: block;
  margin: 0 auto;
  text-align: center;
}

.gastronomie p, .hebergement p {
  background-color: white;
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  flex: 1;
  color: #333;
  font-size: 16px;
  text-align: center;
}

.plage, .activite {
  display: flex;
  align-items: center;
  gap: 20px; 
  max-width: 800px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  border-radius: 15px;
  text-align: center; 
}

.plage img, .activite img {
  width: 300px; 
  height: 300px;
  border-radius: 15px; 
  object-fit: cover;
  text-align: center; 
}

.plage p, .activite p {
  margin: 0;
  background-color: white;
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  flex: 1;
}

button {
  display: block;
  margin: 30px auto;
  background-color: orangered;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: orangered;
}
footer {
  position: relative;
  background: url('about.png');
  background-size: cover;
  background-position: center;
  color: white; 
  padding: 15px 10px;
  font-size: 0.9rem;
}

footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.399);
  z-index: 1;
  pointer-events: none;
}

footer * {
  position: relative;
  z-index: 2;
}

  .liste-2-colonnes {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
  }

  .colonne {
    flex: 1;
    list-style-type: none;
    padding: 0;
  }

  .colonne li {
    margin: 5px 0;
  }
