.accueil-container {
  width: 100%;
  height: fit-content;
}

.accueil-top-container {
  width: 100%;
  height: 50vh;
  background-image: url(../img/delicious-grilled-chicken-with-vegetables-dinner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.accueil-top-title {
  width: 100%;
  height: 100%;
  font-size: 45px;
  color: whitesmoke;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.436);
}

/* accueil infos  */

.accueil-infos-container {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.accueil-infos {
  width: 80%;
  height: fit-content;
  display: flex;
  align-items: center;
}

.accueil-infos-left {
  width: 60%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accueil-infos-logo {
  height: auto;
  width: 30%;
  margin-bottom: 1rem;
}

.acceuil-infos-title {
  font-size: 30px;
}

.acceuil-infos-text {
  margin-top: 1rem;
}

.accueil-infos-paiement-logo {
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
}

.accueil-infos-right {
  width: 40%;
  height: fit-content;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.accueil-infos-right-photo {
  height: auto;
  width: 30%;
}

/* accueil navigation */

.accueil-nav-container {
  width: 100%;
  height: fit-content;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accueil-nav-container-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.accueil-nav-container-title .line {
  flex: 1;
  border-top: 1px solid black;
  margin: 0 10px;
}

.accueil-nav-container-title h2 {
  margin: 0;
  font-size: 24px;
  text-align: center;
}

.accueil-nav-infos {
  width: 100%;
  height: fit-content;
  margin: 1rem 0;
  text-align: center;
}

.accueil-nav-link-container {
  width: 90%;
  height: fit-content;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.accueil-nav-link {
  width: 50%;
  height: 150px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid rgba(6, 6, 6, 0.196);
  border-radius: 10px;
  text-decoration: none;
  color: black;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.accueil-nav-link:hover {
  transform: translateY(-3px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nav-link-icon {
  height: 90%;
}

/* accueil contact  */

.accueil-contact-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.accueil-contact {
  width: 90%;
  display: flex;
  gap: 1rem;
  align-items: center;
  align-items: stretch; /* Modifié pour s'assurer que les enfants ont la même hauteur */

}

.accueil-contact-left,
.accueil-contact-right {
  width: 50%;
  border: 1px solid rgba(6, 6, 6, 0.196);
  border-radius: 10px;
  display: flex; /* Assure que le contenu à l'intérieur se répartit bien */
  flex-direction: column; /* Pour que le contenu soit bien organisé en colonne */
 justify-content: center;
}

.accueil-contact-text {
  margin: 1rem;
  text-align: center;
}

.accueil-contact-tel-container {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.accueil-contact-tel {
  text-decoration: none;
  padding: 1rem;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  text-align: center;
}

.accueil-contact-tel:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: translateY(-3px);
}

.tel-1 {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: rgba(190, 4, 4, 0.714);
}

.tel-1 p {
  color: whitesmoke;
}

.tel-2 {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: rgba(3, 120, 1, 0.714);
}

.tel-2 p {
  color: whitesmoke;
}

.tel-3 {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: rgba(152, 144, 2, 0.714);
}

.tel-3 p {
  color: whitesmoke;
}

/* Responsive */
@media (max-width: 862px) {
  .accueil-top-title {
    font-size: 40px;
  }

  .accueil-infos {
    width: 100%;
    flex-direction: column;
  }

  .accueil-infos-logo {
    height: auto;
    width: 60%;
    margin-bottom: 1rem;
  }

  .accueil-infos-left,
  .accueil-infos-right {
    width: 100%;
  }

  .acceuil-infos-title {
    font-size: 25px;
  }

  /* accueil navigation */

  .accueil-nav-container-title h2 {
    font-size: 20px;
  }

  .accueil-nav-link-container {
    flex-direction: column;
    width: 100%;
  }

  .accueil-nav-link {
    width: 100%;
    height: 100px;
  }

  .accueil-contact {
    flex-direction: column;
  
  }

  .accueil-contact-left,
.accueil-contact-right {
  width: 100%;

}
}
