@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

.dispf {
  display: flex;
}

.w-40 {
  width: 40%;
}

.w-100 {
  width: 100%;
}


.mr-10 {
  margin-right: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.txtimportant {
  font-size: 24px;
  color: red;
}

.txtc {
  text-align: center;
}

.txtg {
  font-weight: 700;
}

.lh-30 {
  line-height: 30px;
}

.elemc {
  display: flex;
  align-items: center;
}

.none{
  display: none;
}

h3 {
  font-family: "Pacifico";
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  text-decoration: underline;
}

.spaceAround {
  justify-content: space-around;
}

.spaceBet {
  justify-content: space-between;
}

.center {
  justify-content: center;
}

.end {
  justify-content: end;
}

.fixed {
  position: fixed;
}

#headerContener {
  justify-content: space-between;
  color: #f3f3f3;
  padding: 5px 15px;
  background: rgb(0, 190, 18);
  background: radial-gradient(circle, rgba(0, 190, 18, 1) 0%, rgba(0, 158, 15, 1) 49%, rgba(4, 211, 23, 1) 100%);
  border-bottom: 2px black solid;
  width: 100%;
  z-index: 1;
}

#headerContener img {
  border-radius: 50%;
  width: 120px;
}

#headerContener nav {
  width: 650px;
  margin-right: 60px;
}

.form-select{
  background-color: transparent;
}
.fa-regular{
  color: black;
}

#headerContener ul {
  height: 100%;
  align-items: center;
}

#headerContener li {
  transition: all;
  list-style: none;
}

#headerContener li a {
  color: #f4fef3;
  text-decoration: none;
}

#headerContener li a:active {
  color: #f4fef3;
}

#headerContener li a:hover {
  transition: ease-in 250ms;
  font-size: 24px;
}

.titreh1 {
  font-family: "Pacifico";
  font-size: 28px;
  line-height: 32px;
}

.pays{
  margin-left: -50px;
}


section {
  padding: 15px 60px;
  background: #d9d9d9;
}

#intro {
  margin-top: 100px;
}

article {
  border-radius: 5px;
  background: #f3f3f3;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 20px;
}

.presentation {
  display: flex;
}

.imgPresentation{
  height: 400px;
  object-fit: cover;
  width: 500px;
}

.bienvenue {
  width: 40%;
}

table {
  width: 40%;
  border: 2px solid black;
  border-collapse: collapse;
  text-align: center;
}

thead th {
  border: 2px solid black;
  height: 40px;
  font-weight: 700;
}

tbody td {
  width: 50%;
  border: 2px solid black;
  border-collapse: collapse;
}

.tableauxPrix {
  justify-content: space-around;
}

.locationinfos {
  margin-top: 40px;
  text-align: center;
}

.alert {
  color: red;
  font-weight: 700;
}


.divlocalisation {
  display: flex;
}

.divlocalisation img {
  width: 50%;
  object-fit: cover;
}

iframe {
  width: 600px;
  height: 450px;
}


.divcontact {
  flex-direction: column;
  align-items: center;
}

.divcontact2 {
  margin-right: 15px;
}

.adresse {
  margin-top: 40px;
}

.contact li {
  list-style: none;
  text-align: start;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  font-weight: 700;
}

form {
  background-color: #d9d9d9;
  border-radius: 10px;
  padding: 15px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

#email {
  width: 100%;
}

textarea {
  width: 100%;
}

.carousel img {
  height: 400px;
  object-fit: cover;
}

footer {
  padding-top: 10px;
  border-top: 4px solid black;
  justify-content: center;
  padding-bottom: 20px;
}

footer .titreh2 {
  font-family: "Pacifico";
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 1050px) {
  .presentation {
    flex-direction: column;
  }

  .presentation img {
    width: 100%;
  }

  .bienvenue {
    width: 100%;
  }

  .divlocalisation {
    flex-direction: column;
  }

  iframe {
    width: 100%;
  }

  .divlocalisation img {
    width: 100%;
  }

  .ensembleContact {
    flex-direction: column;
  }
}

@media screen and (max-width: 970px) {
  #headerContener {
    flex-direction: column;
  }

  .logo {
    justify-content: center;
  }

  #headerContener nav {
    width: 100%;
    justify-content: space-around;
  }

  .spaceBet {
    justify-content: space-around;
  }

}

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

  #intro {
    margin-top: 10px;
  }

  #headerContener {
    position: relative;
  }

  .tableauxPrix {
    flex-direction: column;
    align-items: center;
  }

  table {
    margin-bottom: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 660px) {
  h3 {
    font-size: 24px;
  }

  footer img {
    display: none;
  }

  footer .titreh2 {
    font-size: 19px;
  }



  section {
    padding: 15px 15px;
  }

  .txtimportant {
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  * {
    font-size: 16px;
  }

  h1 {
    font-size: 18px;
  }

  .titreh1 {
    font-size: 20px;
  }

  .titreh2 {
    font-size: 18px;
  }

  textarea {
    height: 130px;
  }

}

@media screen and (max-width: 420px) {
  #headerContener img {
    width: 75px;
  }


}