/* Importer la police Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Importer la police Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Mettre par défaut les marges et paddings à 0 et les polices à Poppins */

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", serif;
}

/******************************************** Body ********************************************/
/* Mettre par défaut la couleur de fond */
body {
  background-color: #f5e6c3;
}

#logoSite {
  margin: 0px;
  width: 120px;
}

/******************************************** Header ********************************************/
.navbar {
  width: 100%;
  display: flex;
  height: 80px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #505050;
}

/* Changer la disposition des liens */
.navbar .links {
  display: flex;
  gap: 2rem;
}

/* Style des liens */
.navbar .links li {
  list-style: none;
  /* float: left; */
  position: relative;
}

/* Style du burger menu */
.navbar .burger-menu-button {
  color: #6e00c8;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* Boutons Créer un compte et Se connecter */
.buttons {
  display: flex;
  gap: 30px;
}

.buttons > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.connect-session > a {
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px;
}

.avatar-profile-header {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.avatar-profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

/* Style des boutons créer et se connecter */
.creation,
.connect,
.deconnect {
  background-color: #6e00c8;
  color: white;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 10px 10px 10px 0;
}

/* Style des boutons au survol */
.creation:hover,
.connect:hover,
.deconnect:hover {
  background-color: white;
  color: #6e00c8;
  border: 1px solid #6e00c8;
  border-radius: 10px 10px 10px 0;
  padding: 10px 10px;
  outline: none;
  cursor: pointer;
}

/* Changer le style des liens */
.links > li {
  list-style: none;
}

/* Changer la couleur des liens, la taille et la police */
.links > li > a {
  text-decoration: none;
  color: #505050;
  font-weight: 600;
  font-family: "Poppins", serif;
}

/* Changer la couleur des liens au survol */
.links > li > a:hover {
  color: #6e00c8;
}

/* Masquer les sous menus */
.submenu {
  display: none;
}

/* Changer la disposition des sous menus */
.navbar li:hover .submenu {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0px;
  padding: 0px;
  z-index: 1000;
}

/* Style des sous menus */
.submenu li a {
  text-decoration: none;
  font-size: 13px;
  color: #6e00c8;
  width: 270px;
}

/* Marge entre les sous menus */
.submenu li {
  padding: 5px 10px;
  border: 1px solid #6e00c8;
  background-color: white;
  font-size: 5px;
}

/* Changer la couleur des sous menus au survol */
.menu-club .submenu li:hover {
  background-color: #6e00c8;
  cursor: pointer;
}

.menu-club .submenu li:hover a {
  color: white;
  text-decoration: none;
}

/* Changer la couleur des sous menus au survol */
.menu-cours .submenu li:hover {
  background-color: #6e00c8;
  cursor: pointer;
}

.menu-cours .submenu li:hover a {
  color: white;
  text-decoration: none;
}

/* Changer la couleur du texte des sous menus au survol */
.submenu li a:hover {
  color: white;
}

/******************************************** Header Connecter ********************************************/

/* Accès profile utilisateur */
.access-profile {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Photo profile et Nom utilisateur */
.access-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

/******************************************** Burger menu ********************************************/
/* Changer la disposition du burger menu */
.burger-menu {
  display: none;
  height: 0;
  position: absolute;
  right: 2rem;
  top: 60px;
  width: 100%;
  background: #f5e6c3;
  border-radius: 10px 10px 10px 0;
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: height 0.3s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Changer la hauteur du burger menu */
.burger-menu.open {
  height: auto;
  display: block;
  width: 90%;
  margin-top: 50px;
  background-color: #d7bfbf;
  z-index: 1;
}

/* Changer la disposition des liens et des boutons */
.burger-menu li {
  padding: 0.7rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Style du divider */
.divider {
  height: 1px;
  background-color: #6e00c8;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

/* Changer la disposition des boutons creation et connect */
.burger-menu .creation,
.connect,
.profile,
.deconnect {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger-menu .connect {
  margin-bottom: 10px;
}

/* Changer la disposition des liens et boutons */
.buttons-burger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

/* Afficher les sous menus dans le burger au survol */

/* Sous-menus cachés par défaut */
.burger-menu .submenu {
  display: none;
  flex-direction: column;
  text-align: center;
  padding: 0;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

/* Afficher le sous-menu quand la classe open-submenu est activée */
.burger-menu .submenu.open-submenu {
  display: flex;
  animation: slideDown 0.3s ease-in-out forwards;
  margin-top: 20px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.burger-menu .submenu li {
  background: white;
  margin: auto;
  border: 1px solid #6e00c8;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  max-width: 70%;
  text-align: center;
  word-wrap: break-word;
}

.burger-menu .submenu li:hover {
  background: #6e00c8;
}

.burger-menu .submenu li:hover a {
  color: white;
}

header {
  position: relative;
  padding: 0 2rem;
}

.navbar .links,
.navbar .connect,
.navbar .creation {
  display: none;
}

.navbar .links,
.navbar .profile-connect,
.deconnect {
  display: none;
}

.navbar .burger-menu-button {
  display: block;
}

.burger-menu {
  display: block;
}

/******************************************** Main ********************************************/

/***************** Index class container **********************/
/* Mettre par défaut la disposition */
.container {
  display: flex;
  justify-content: center;
  margin: 50px 50px;
  flex-direction: row;
  align-content: flex-end;
}

/* Contenu de la section acceuil */
.section-acceuil {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.section-acceuil-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-acceuil-text h1 {
  color: #d06310;
  font-size: 30px;
  font-weight: 300;
  max-width: max-content;
}

.section-acceuil-text h2 {
  font-size: 48px;
  font-weight: bold;
}

.section-acceuil-text p {
  font-size: 18px;
  font-weight: normal;
  color: #505050;
  max-width: 550px;
}

.section-acceuil-text p > strong {
  color: black;
}

/* Disposition de la classe recherche */

.alert-message {
  background-color: #fff3cd;
  color: #6e00c8;
  font-weight: bold;
  border: 1px solid #ffeeba;
  padding: 12px 16px;
  border-radius: 5px;
  margin-top: 20px;
}

.alert-message > a {
  justify-content: center;
  color: #d06310;
  font-weight: bold;
  text-decoration: none;
}

.search-lessons {
  background: white;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 95%;
  margin-top: 20px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}

.search-lessons > h3 {
  text-align: center;
  color: black;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
  width: 90%;
}

.search-lessons > button {
  display: flex;
  margin-top: 10px;
  padding: 10px 20px;
  width: auto;
  color: #fff;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  margin-left: 20px;
}

.search-form > select {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background-color: #fdd9a8;
  border-radius: 5px;
  margin-right: 10px;
  width: 100%;
  font-size: 16px;
}

.menus {
  display: flex;
  gap: 30px;
  /* Marge entre les deux menus */
  justify-content: flex-start;
  /* Aligné à gauche */
  flex-direction: column;
}

.menus > p {
  text-align: center;
}

.menus a {
  display: flex;
}

.section-acceuil-img {
  display: flex;
  width: 33%;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.section-acceuil-img {
  display: none;
}

.cours-button {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.cours-button > h5 {
  text-align: center;
  margin: 20px;
  color: #505050;
  font-size: 20px;
  font-weight: 300;
}

.cours-button > a {
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  background: #6e00c8;
  color: #fff;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  margin-bottom: 100px;
}

.planning-cards-content {
  background-color: white;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin: 50px;
  border-radius: 20px;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.planning-cards-content > ul {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
}

.planning-cards-content > ul > li {
  list-style: none;
  background-color: #f3d89e;
  color: #92714f;
  font-size: 12px;
  padding: 5px 19px 6px 19px;
  border-radius: 15px;
}

.planning-cards-content > img {
  width: 90%;
  margin: 0 auto;
  border-radius: 15px;
}

.planning-cards-content > h4 {
  text-align: left;
  color: #d06310;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  padding: initial;
}

.planning-cards-content > h5 {
  text-align: left;
  color: #6e00c8;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  padding-left: inherit;
}

.planning-cards-content > p {
  text-align: left;
  color: #382847;
  font-size: 18px;
  font-weight: regular;
  margin: 0 auto;
  padding-left: inherit;
}

.planning-cards-content > a {
  text-align: right;
  color: #531496;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  text-decoration: none;
}

.planning-button {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.planning-button > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  padding: 14px 57px;
  background: #6e00c8;
  color: #fff;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  width: auto;
}

/***************** Index class Cours **********************/

.cours {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 95%;
  margin-top: 20px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}

.cours-title {
  text-align: center;
  margin-bottom: 10px;
  width: 90%;
  margin: 50px auto;
}

.cours-title h3 {
  color: #d06310;
  font-size: 25px;
  font-weight: 300;
}

.cours-title h4 {
  color: black;
  font-size: 30px;
  font-weight: bold;
}

.cours-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cours-cards div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cours-cards img {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}

.cours-cards h5 {
  text-align: center;
  color: black;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.cours-cards p {
  margin: 10px 10px 10px 10px;
  width: 90%;
  text-align: center;
  color: #505050;
  font-size: 15px;
  font-weight: normal;
}

.cours-title p {
  color: #d06310;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

/******************** Index class testimonials *********************/

.expertise-title {
  text-align: center;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise-title h4 {
  color: #d06310;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 10px;
}

.expertise-title h5 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  width: 80%;
}

.expertise-title img {
  width: 50%;
  height: 50%;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 100px;
}

.card-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 30px;
  border: 1px solid;
}

.card-testimonial,
.stars {
  margin-bottom: 25px;
}

.card-testimonial p {
  margin-bottom: 25px;
}

.card-testimonial,
.info {
  display: flex;
}

.card-testimonial,
.info img {
  margin-right: 25px;
}

.card-testimonial,
.info ul > li {
  list-style: none;
}

/******************** Index class team *********************/

.team {
  display: flex;
  flex-direction: column;
}

.team-title {
  text-align: center;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-title h4 {
  color: #d06310;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 10px;
}

.team-title h5 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  width: 80%;
}

.team-cards {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.team-cards div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  background-color: white;
  width: 50%;
  border-radius: 20px;
  padding: 20px;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.team-cards div > h5 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.team-cards div > h6 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
}

.team-cards div > p {
  width: 70%;
  text-align: center;
  color: #505050;
  font-size: 16px;
  font-weight: regular;
}

.team div > p {
  text-align: center;
}

.team-button {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.team-button > a {
  padding: 10px 20px;
  text-decoration: none;
  background: #6e00c8;
  color: #fff;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  margin: 50px;
  width: auto;
}

/******************** Page Nos Cours  *********************/

.lessons-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  background-color: white;
  z-index: 1;
}

.lessons-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lessons-title h1 {
  margin-top: 50px;
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 20px;
}

.lessons-title p {
  width: 85%;
  text-align: left;
  color: black;
  font-size: 18px;
  font-weight: regular;
  margin-bottom: 50px;
}

.tarif {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  border: 1px solid #d06310;
  border-radius: 10px;
  padding: 20px;
}

.tarif p {
  font-size: 15px;
  font-weight: bold;
  color: #d06310;
}

.container-lessons-left,
.container-lessons-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 80%;
  margin: 50px auto;
  flex-wrap: wrap;
  border-radius: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.lessons-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 62%;
  margin-top: 20px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.lessons-desc h3 {
  font-size: 20px;
  font-weight: bold;
}

.lessons-desc > ul {
  gap: 20px;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lessons-desc h2 {
  font-size: 30px;
  text-align: center;
}

.lessons-img {
  display: none;
}

.lessons-desc > button {
  margin-bottom: 30px;
}

/************************* Page Moniteurs ******************************/

/***************** Section teams ****************/
.teams-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  background-color: white;
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  z-index: 0;
}

.section-title h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-title p {
  width: 100%;
  text-align: center;
  color: black;
  font-size: 18px;
  font-weight: regular;
  margin-bottom: 50px;
  margin-top: 20px;
}

.teams-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  z-index: 0;
}

.teams-title h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 20px;
}

.teams-title p {
  width: 100%;
  text-align: center;
  color: black;
  font-size: 18px;
  font-weight: regular;
  margin-bottom: 50px;
  margin-top: 20px;
}

.teams-button {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.teams-button button {
  padding: 10px 20px;
  background: #6e00c8;
  color: #fff;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  margin: 30px;
}

.teams-button-connect {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.teams-button-connect button {
  padding: 10px 20px;
  background: #6e00c8;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
}

/***************** Main teams ****************/

/***************** Section admin ****************/

.teams-container-admin > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  width: auto;
  border-radius: 20px;
  padding: 20px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.teams-container-admin h5 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.teams-container-admin h6 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: normal;
}

.teams-container-admin p {
  text-align: center;
  color: black;
  font-size: 16px;
  font-weight: regular;
}

.teams-button-contact {
  display: flex;
  justify-content: center;
}

.teams-button-contact > button {
  padding: 10px 20px;
  background: #6e00c8;
  color: #fff;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  margin: 30px;
}

/* ***************** Section moniteurs **************** */

.teams-container-moniteurs > div {
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: center;
  margin: 50px;
  border-radius: 20px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.teams-container-moniteurs img {
  margin-top: 20px;
}

.teams-container-moniteurs h5 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.teams-container-moniteurs h6 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: normal;
}

.teams-container-moniteurs p {
  text-align: center;
  color: black;
  font-size: 16px;
  font-weight: regular;
  width: 50%;
}

.picture-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picture-title h3 {
  color: #d06310;
  font-size: 25px;
  font-weight: 300;
  margin-top: 50px;
}

.picture-title h4 {
  font-size: 48px;
  font-weight: bold;
  color: black;
  margin-bottom: 50px;
}

.container-picture {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-picture > div {
  margin-bottom: 20px;
}

.container-picture > div > img {
  max-width: auto;
}

/************************* Page Nous contacter ******************************/

/* Section contact */

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  background-color: white;
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  z-index: 0;
}

.section-title p {
  width: 100%;
  text-align: center;
  color: black;
  font-size: 18px;
  font-weight: regular;
  margin-bottom: 50px;
  margin-top: 20px;
}

/* Section container contact */

.contact-form {
  display: flex;
  align-items: flex-start;
  /* Formulaire aligné à gauche */
  justify-content: center;
  /* Centrage du titre */
  flex-direction: column;
  width: auto;
  margin: auto;
  border-radius: 20px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 20px;
}

.contact-form h2 {
  text-align: center;
  /* Centrer le titre */
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
}

.contact-form form {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form div {
  margin-bottom: 15px;
  width: 80%;
}

label {
  font-size: 18px;
  font-weight: regular;
  color: #505050;
}

form div > input,
form div > select,
form div > textarea {
  background-color: #fdd9a8;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  /* Agrandir les champs */
}

/* Champs pleine largeur sauf radios/checkbox */
.account-form-dog
  input:not([type="radio"]):not([type="checkbox"]),
.account-form-dog select,
.account-form-dog textarea {
  background-color: #fdd9a8;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  /* pour que le padding ne dépasse pas */
  display: block;
}

/* Mise en forme propre du groupe radio */
.account-form-dog .radio-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.account-form-dog .radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

textarea {
  height: 150px;
  /* Agrandir la zone de texte */
}

button {
  display: block;
  width: auto;
  margin: 0 auto 20px;
  padding: 12px;
  background-color: #6e00c8;
  /* Couleur similaire au bouton sur ton image */
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
}

button:hover {
  background-color: #6e00c8;
}

.container-contact > div > img {
  display: none;
}

/* Section contact-info */

.contact-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
}

.mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 20px;
  border-radius: 20px;
}

.mail > i {
  display: flex;
  justify-content: center;
  font-size: 30px;
  margin-right: 10px;
  color: #d06310;
  align-items: center;
  margin-bottom: 20px;
}

.mail h3 {
  text-align: center;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
}

.mail p {
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: regular;
  color: black;
  margin-bottom: 20px;
}

.mail a {
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: regular;
  color: #d06310;
  margin-bottom: 20px;
  text-decoration: none;
}

.phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 20px;
  border-radius: 20px;
}

.phone > i {
  display: flex;
  justify-content: center;
  font-size: 30px;
  margin-right: 10px;
  color: #d06310;
  align-items: center;
  margin-bottom: 20px;
}

.phone h3 {
  text-align: center;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
}

.phone p {
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: regular;
  color: black;
  margin-bottom: 20px;
}

.phone a {
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: regular;
  color: #d06310;
  margin-bottom: 20px;
  text-decoration: none;
}

/* Section contact-location */

.contact-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 80%;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
}

.address {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 20px;
  border-radius: 20px;
}

.address > h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.map {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 20px;
  border-radius: 20px;
  width: 80%;
}

.map > iframe {
  width: 100%;
}

/******************** Page Création d'un compte  *********************/

.account-title > h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.account-title > img {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: auto;
}

.container-account {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 20px;
  border-radius: 20px;
}

.confirmation-message {
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  color: #d06310;
  padding: 10px;
  margin-bottom: 20px;
}

.account-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  width: auto;
}

.account-button > input {
  background-color: #6e00c8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
}

.account-button > p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.account-button > p > a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin-left: 5px;
}

.account-button > p > a:hover {
  color: #6e00c8;
}

.account-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: auto;
}

/* Mise en forme champs obligatoires*/

.required {
  color: red;
}

.error input,
.error textarea {
  border-color: red;
}

.error {
  color: red;
}

/******************** Page Connexion  *********************/

.connect-account {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
}

.connect-account > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  width: 70%;
}

.button-connect {
  margin-top: 20px;
  margin-bottom: 5px;
  width: auto;
}

.button-connect > button {
  margin-bottom: 20px;
  text-decoration: none;
}

.button-password {
  margin-bottom: 10px;
}

.button-forgot > a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin-left: 5px;
}

/******************** Page Règlement  *********************/

.regulations-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  background-color: white;
}

.regulations-button {
  margin: 30px;
}

.regulations-button > a {
  text-decoration: none;
  color: white;
  background-color: #6e00c8;
  padding: 10px;
  border-radius: 10px 10px 10px 0;
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  z-index: 0;
}

.section-title h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-title p {
  width: 100%;
  text-align: center;
  color: black;
  font-size: 18px;
  font-weight: regular;
  margin-bottom: 50px;
  margin-top: 20px;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.about-title {
  margin-bottom: 50px;
}

.about-title > h2 {
  font-size: 30px;
}

.about > div > p {
  text-align: center;
  margin-bottom: 50px;
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
  padding: 20px;
}

.about-img > img {
  margin: auto;
  width: auto;
  display: flex;
  flex-direction: column;
}

.regulations-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
}

.regulations-title > h3 {
  font-size: 30px;
}

.regulations-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  padding: 60px;
  border-radius: 20px;
}

.regulations-infos > h3 {
  margin-top: 30px;
  margin-bottom: 30px;
}

/************************* Page Mon profile et Profile chien ******************************/

.container-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
  width: auto;
}

.picture-profile {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.picture-profile-dog {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.picture-profile-dog > img {
  width: 50%;
  margin: auto;
}

.picture-profile-dog > h3 {
  margin-bottom: 30px;
  font-size: 36px;
}

.connect-profile > h2 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.infos-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.infos-profile > h3 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.section-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.profile-button {
  margin: 15px;
}

.profile-button > a {
  text-decoration: none;
  color: white;
  background-color: #6e00c8;
  padding: 10px;
  border-radius: 10px 10px 10px 0;
}

.modif-button {
  margin: 15px;
}

.modif-button > a {
  text-decoration: none;
  color: white;
  background-color: #6e00c8;
  padding: 10px;
  border-radius: 10px 10px 10px 0;
}

.return-button {
  width: max-content;
  display: block;
  padding: 12px;
  background-color: #6e00c8;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
}

.return-button > a {
  text-decoration: none;
  color: white;
}

.delete-button > form > button {
  width: max-content;
  display: block;
  padding: 12px;
  background-color: red;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  margin-right: 15px;
}

.delete-button > a {
  text-decoration: none;
  color: white;
}

.reservation-button {
  margin: 15px;
}

.reservation-button > a {
  text-decoration: none;
  color: white;
  background-color: #6e00c8;
  padding: 10px;
  border-radius: 10px 10px 10px 0;
}

.change-avatar > form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/************************* Page Modifier mon profile ******************************/

.container-modif {
  display: flex;
  flex-direction: column;
  width: 90%;
  align-items: center;
  margin: 50px auto;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
}

.account-modif-one {
  margin-top: 50px;
}

.account-modif-dog {
  margin: 50px;
  width: auto;
}

.account-modif-two {
  margin-bottom: 50px;
  width: 56%;
}

.modif-btn {
  margin: 30px auto;
  width: auto;
}

/************************* Page Modifier mon chien ******************************/

.cancel-btn {
  background-color: #6e00c8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
  text-decoration: none;
}

.container-account > form > a {
  display: flex;
  margin: auto;
  width: fit-content;
}

.form-modif-dog > label,
.form-modif-dog > input {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin: auto;
}

/************************* Page Inscritpion de mon chien ******************************/

.container-account-dog {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: white;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  border-radius: 20px;
  width: 100%;
}

.container-account-dog > form {
  margin: 50px 0 50px 0;
  width: 70%;
}

.account-form-dog {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account-dog-btn {
  margin: 50px 0 50px 0;
}

.account-profile-picture {
  width: 75%;
  margin-bottom: 50px;
}

/************************* Page pas de chien inscrit ******************************/

.card-no-dog {
  background-color: white;
  margin: 30px auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.card-no-dog > h4 {
  font-weight: bold;
  font-size: 20px;
}

/************************* Page mes chiens inscrits ******************************/

.container-my-dogs > h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  font-weight: bold;
}

.cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
}

.dog-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 20px;
  margin: 50px;
  border-radius: 20px;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
  width: 40%;
  text-decoration: none;
  color: #6e00c8;
}

.dog-card > img {
  margin-bottom: 10px;
}

.avatar-profile-dog {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

/************************* Page Réservation ******************************/

.reservation-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  background-color: white;
}

.card-content-reservation {
  background-color: white;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin: 50px;
  border-radius: 20px;
  box-shadow: -10px 7px 0px 2px #fdd9a8;
}

.card-content-reservation > img {
  width: 90%;
  margin: 0 auto;
  border-radius: 15px;
}

.card-content-reservation > ul > li {
  display: flex;
  list-style: none;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #6e00c8;
  justify-content: center;
}

.authorize-cat {
  color: rgb(143, 15, 15);
}

.card-content-reservation > h5 {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  color: #d06310;
}

.card-content-reservation > h4 {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content-reservation > h6 {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: #505050;
}

.card-content-reservation > p {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.session-moment {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.planning-button-reservation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  gap: 3px;
  align-items: center;
  margin: 30px auto;
  flex-wrap: wrap;
  background-color: #6e00c8;
  text-decoration: none;
  border-radius: 10px 10px 10px 0;
}

.planning-button-reservation > a {
  text-decoration: none;
  color: white;
  padding: 10px;
}

/************************* Page historique réservation ******************************/

.return-button-profile {
  width: max-content;
  display: flex;
  margin: auto;
  padding: 12px;
  background-color: #6e00c8;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
}

.return-button-profile > a {
  text-decoration: none;
  color: white;
}

.cancel {
  display: block;
  width: auto;
  margin: auto;
  padding: 12px;
  background-color: red;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 10px 10px 10px 0;
  cursor: pointer;
}

.alert.success {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 5px;
  margin: 10px 0;
  border: 1px solid #c3e6cb;
}

.table-container {
  margin: 40px auto;
  width: 95%;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  /* Permet le scroll si nécessaire */
}

/* Conteneur intérieur fixe */
.table-container > table {
  width: 100%;
  /* Largeur fixe */
  min-width: 1000px;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
}

/* Titre */
.table-reservation > h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 50px auto;
  font-weight: bold;
  color: #d06310;
  font-size: 30px;
}

/* En-têtes */
.table-container thead {
  background-color: #6e00c8;
  color: white;
  text-align: left;
}

/* Cellules */
.table-container th,
.table-container td {
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
}

/* Ligne survolée */
.table-container tbody tr:hover {
  background-color: #f1f1f1;
}

/* Dernière cellule centrée */
.table-container td:last-child {
  text-align: center;
}

.table-container th:first-child,
.table-container td:first-child {
  min-width: 180px;
  white-space: nowrap; /* Empêche le retour à la ligne */
}

/******************************************** Footer ********************************************/

footer {
  border-top: 1px solid #000;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  flex-direction: column;
}

.links {
  display: flex;
  gap: 2rem;
  text-align: center;
  flex-direction: column;
  margin-bottom: 120px;
}

.links li {
  list-style: none;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", serif;
}

.links a:hover {
  color: #6e00c8;
}

.social-links {
  margin-top: 50px;
}

.social-links a {
  margin: 40px;
  color: #6e00c8;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #505050;
  text-align: center;
  padding: 50px;
  margin: 0 50px;
  font-size: 0.9rem;
  color: #505050;
}

.footer-bottom a {
  margin-left: 10px;
  text-decoration: none;
  color: #505050;
}

.footer-bottom a:hover {
  color: #6e00c8;
}

/******************************************** Résponsive ********************************************/

/* Responsive 500px */
@media (min-width: 500px) {
  .container {
    flex-direction: column;
    margin: 20px;
  }

  .section-acceuil {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .section-acceuil-img {
    width: 100%;
    margin: 20px 0;
  }

  .account-modif-one {
    width: 50%;
    margin-top: 50px;
  }

  .account-modif-two {
    width: 50%;
    margin-bottom: 50px;
  }

  .container-account {
    display: flex;
    flex-direction: unset;
    margin-top: 50px;
    width: fit-content;
    margin: 50px auto;
  }

  .account-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
  }

  .account-form-dog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
  }

  .planning-cards-reservation {
    display: flex;
    width: auto;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .card-content-reservation {
    width: 70%;
    margin: 50px;
  }

  .card-content-reservation > img {
    width: 50%;
    height: 200px;
    object-fit: cover;
  }

  .container-account > form > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: fit-content;
    margin: auto;
  }
}

/* Responsive 768px */
@media (min-width: 768px) {
  .container {
    flex-direction: column;
    margin: 30px;
  }

  .section-acceuil {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .section-acceuil-img {
    width: 80%;
    margin: 30px 0;
  }

  .menus {
    display: flex;
    gap: 30px;
    /* Marge entre les deux menus */
    justify-content: flex-start;
    /* Aligné à gauche */
    flex-direction: row;
  }

  .cours-button > a {
    margin-top: 50px;
    width: 54%;
  }

  .account-title > img {
    display: none;
  }

  .container-profile {
    width: 50%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .picture-profile-dog > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
  }

  .section-button {
    margin-bottom: 50px;
    flex-direction: row;
    justify-content: center;
  }

  .container-modif {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    margin: 50px;
    margin-top: 100px;
  }

  .account-modif-one {
    width: 50%;
    margin-top: 50px;
  }

  .account-modif-two {
    width: 50%;
    margin-bottom: 50px;
  }

  .modif-btn {
    margin-top: 50px;
  }

  .container-account {
    display: flex;
    flex-direction: unset;
    margin-top: 50px;
    width: fit-content;
    margin: 50px auto;
  }

  .planning-cards-reservation {
    display: flex;
    width: auto;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .card-content-reservation {
    width: 70%;
    margin: 50px;
  }

  .card-content-reservation > img {
    width: 40%;
    height: 200px;
    object-fit: cover;
  }
}

/* RESPONSIVE scroll à partir de 992px */
@media screen and (max-width: 992px) {
  .table-container {
    overflow-x: auto;
  }

  .table-container > table {
    width: 1000px;
    /* Force la largeur pour créer un scroll horizontal */
  }
}

/* Responsive 992px */
@media (min-width: 992px) {
  .container {
    flex-wrap: wrap;
  }

  .section-acceuil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    margin: auto;
  }

  .container {
    display: flex;
    justify-content: end;
    margin: 50px 50px;
    flex-direction: row;
    align-content: flex-end;
  }

  .menus {
    display: flex;
    gap: 30px;
    /* Marge entre les deux menus */
    justify-content: flex-start;
    /* Aligné à gauche */
    flex-direction: row;
  }

  .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    flex-direction: row;
  }

  .navbar .links,
  .navbar .connect,
  .navbar .creation {
    display: flex;
    width: auto;
  }

  .navbar .links,
  .navbar .profile-connect,
  .deconnect {
    display: flex;
    margin: auto;
  }

  .navbar .burger-menu-button {
    display: none;
  }

  .burger-menu {
    display: none;
  }

  #logoSite {
    margin: 50px;
    width: 120px;
  }

  .links {
    flex-direction: row;
  }

  .social-links {
    margin-top: 0px;
  }

  .burger-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cours {
    width: 65%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
  }

  .cours-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .cours-cards div img {
    width: 100%;
  }

  .cours-button {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
    width: 100%;
  }

  .planning {
    display: flex;
    justify-content: center;
    margin: 50px 50px;
    flex-direction: column;
    align-content: stretch;
    flex-wrap: wrap;
  }

  .planning-cards {
    display: flex;
    width: 88%;
  }

  .planning-cards-content h4 {
    width: 88%;
    text-align: left;
    padding-left: 13px;
  }

  .planning-cards-content h5 {
    width: 90%;
    text-align: left;
  }

  .planning-cards-content p {
    text-align: left;
    width: 88%;
  }

  .planning-cards-content ul {
    width: max-content;
  }

  .planning-cards-content > a {
    margin-left: 10px;
    text-align: left;
    width: 88%;
    padding-left: 22px;
  }

  .expertise {
    display: flex;
    flex-direction: row-reverse;
    width: 90%;
  }

  .expertise-title img {
    width: 150%;
    height: auto;
  }

  .expertise-title h5 {
    width: 85%;
  }

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

  .team-title h5 {
    width: 100%;
  }

  .team-cards {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-bottom: 50px;
  }

  main,
  .lessons {
    width: 100%;
  }

  .lessons-section {
    margin-bottom: 200px;
  }

  main,
  .lessons {
    width: 100%;
  }

  .container-lessons-left {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 0px;
    background-color: #f5e6c3;
    padding: 20px;
  }

  .container-lessons-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
    width: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 0px;
    background-color: #f5e6c3;
    padding: 20px;
  }

  .container-lessons-right > img {
    width: 40%;
  }

  .lessons-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alignement à gauche */
    text-align: left;
    width: 40%;
    margin-top: 20px;
    margin-left: 100px;
  }

  .lessons-desc > h2 {
    text-align: left;
    width: auto;
  }

  .lessons-desc > p {
    text-align: left;
    width: 50%;
    margin-bottom: 10px;
  }

  .lessons-img {
    display: flex;
    flex: 1;
    /* Laisse l'image occuper l'espace restant */
    justify-content: flex-end;
  }

  .lessons-img img {
    max-width: 80%;
    /* Évite que l'image soit trop grande */
    height: auto;
    padding: 100px;
  }

  .tarif {
    margin-bottom: 10px;
  }

  .tarif > p {
    text-align: left;
    width: 100%;
    margin: auto;
  }

  .lessons-desc > h3 {
    margin-top: none;
    margin-top: 10px;
    font-size: 20px;
  }

  .lessons-desc > ul {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lessons-desc > ul > li {
    margin-bottom: 10px;
    gap: 20px;
    color: #505050;
    font-weight: regular;
  }

  .lessons-desc > button {
    margin-top: 10px;
    margin-bottom: 40px;
    width: auto;
  }

  .lessons-title {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 100px;
  }

  .lessons-section {
    margin-bottom: 100px;
    position: relative;
    margin-top: auto;
  }

  .lessons-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pexels-karolina-grabowska-4498185.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .lessons-title h1 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .lessons-title p {
    width: 36%;
    font-weight: bold;
    text-align: left;
    color: black;
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .teams-title h1 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
  }

  .teams-title p {
    width: 36%;
    font-weight: regular;
    text-align: left;
    color: #505050;
  }

  .teams-title {
    align-items: center;
  }

  .teams-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .teams-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/moniteur-couverture.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .teams-container-admin {
    display: flex;
    flex-direction: row;
  }

  .teams-container-admin > div {
    margin: 100px;
  }

  .teams-container-moniteurs {
    display: flex;
    flex-direction: row;
  }

  .teams-container-moniteurs > div {
    margin: 20px;
  }

  .section-one {
    display: flex;
    flex-direction: row;
  }

  .section-two {
    display: flex;
    flex-direction: row;
  }

  .section-one > div > img {
    margin: 20px;
    width: 90%;
  }

  .section-two > div > img {
    margin: 20px;
    width: 90%;
  }

  .contact-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/xennie-moore-lbYNGpqNsnI-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .section-title h1 {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .section-title p {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
    color: black;
    font-weight: bold;
    width: 35%;
  }

  .section-title {
    align-items: flex-start;
    margin: 100px;
  }

  .container-contact > div > img {
    display: block;
    width: 120%;
    margin-left: 50px;
    margin-top: 70px;
  }

  .container-contact {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin-top: 250px;
    margin-left: 50px;
    margin-bottom: 100px;
  }

  .cours-button > a {
    margin-top: 50px;
    width: 54%;
  }

  .contact-infos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .mail {
    margin-right: 200px;
  }

  .contact-form button {
    width: 50%;
  }

  .contact-form {
    width: 100%;
  }

  .contact-location {
    display: flex;
    flex-direction: row;
  }

  .contact-location > div {
    margin: 50px;
  }

  .address {
    width: 50%;
  }

  .map {
    margin: 50px;
    width: 50%;
  }

  .contact-location > div > iframe {
    width: 100%;
  }

  .account-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
  }

  .account-title > h2 {
    font-size: 35px;
  }

  .account-title > img {
    display: none;
  }

  .container-account {
    display: flex;
    flex-direction: unset;
    margin-top: 50px;
    width: fit-content;
    margin: auto;
  }

  .account-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
  }

  .account-button > button {
    width: 30%;
    margin: auto;
  }

  .connect-account {
    width: 50%;
    margin: auto;
    margin-top: 100px;
  }

  .regulations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: url(../images/image-vide.png) center/cover
      no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .about {
    margin-top: 250px;
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
  }

  .about-title {
    display: flex;
    justify-content: center;
  }

  .about-title > h2 {
    font-size: 48px;
    font-weight: bold;
  }

  .about > div {
    margin: 50px;
    width: 50%;
  }

  .about > div > p {
    margin: auto;
    width: auto;
    display: block;
    padding: auto;
    background-color: white;
    box-shadow: -10px 7px 0px 2px #fdd9a8;
    border-radius: 20px;
  }

  .about-img {
    width: max-content;
    margin: auto;
  }

  .about-img > img {
    width: auto;
  }

  .regulations-title > h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .regulations-infos {
    width: 50%;
    margin: auto;
    margin-bottom: 50px;
  }

  .regulations-infos > h3 {
    font-size: 24px;
    margin: 50px;
  }

  .regulations-infos > p {
    font-size: 20px;
  }

  .regulations-infos > ul > li {
    margin-top: 30px;
  }

  .container-profile {
    width: 50%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .picture-profile-dog > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
  }

  .section-button {
    margin-bottom: 50px;
    flex-direction: row;
    justify-content: center;
  }

  .container-modif {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
    margin: 50px;
    margin-top: 150px;
  }

  .account-modif-one {
    width: 37%;
    margin: auto;
    padding: 50px;
  }

  .account-modif-two {
    width: 37%;
    margin: auto;
    padding: 50px;
  }

  .modif-btn {
    margin-top: 50px;
  }

  .account-dog-btn {
    width: auto;
    margin: 50px auto 50px;
  }

  .reservation-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .reservation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/anna-dudkova-mHzXM0FwYCI-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .regulations-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .regulations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/leo_visions-xJ6dJGM8KuM-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .regulations-button {
    margin-bottom: 5px;
  }

  .account-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
  }

  .account-form-dog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
  }

  .search-form > select {
    width: 26%;
  }

  .planning-cards-reservation {
    display: flex;
    width: auto;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .card-content-reservation {
    width: 70%;
    margin: 50px;
  }

  .card-content-reservation > img {
    width: 30%;
    height: 200px;
    object-fit: cover;
  }

  .table-reservation > h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    font-weight: bold;
    color: #d06310;
    font-size: 30px;
  }

  .table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    width: 95%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .table-container > table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
  }

  .table-container thead {
    background-color: #6e00c8;
    color: white;
    text-align: left;
  }

  .table-container th,
  .table-container td {
    padding: 14px 18px;
    border-bottom: 1px solid #ddd;
  }

  .table-container tbody tr:hover {
    background-color: #f1f1f1;
  }

  .table-container td:last-child {
    text-align: center;
  }

  .container-account > form > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: fit-content;
    margin: auto;
  }
}

/* Responsive 1199px */
@media (min-width: 1199px) {
  .container {
    margin: 40px;
  }

  .section-acceuil-img {
    display: block;
    width: 40%;
  }

  .section-acceuil {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    width: 50%;
    padding-right: 80px;
  }

  .container {
    display: flex;
    justify-content: center;
    margin: 50px 50px;
    flex-direction: row;
    align-content: flex-end;
  }

  .menus {
    display: flex;
    gap: 30px;
    /* Marge entre les deux menus */
    justify-content: flex-start;
    /* Aligné à gauche */
    flex-direction: row;
  }

  .menus {
    display: flex;
    gap: 30px;
    /* Marge entre les deux menus */
    justify-content: flex-start;
    /* Aligné à gauche */
    flex-direction: row;
  }

  .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    flex-direction: row;
  }

  .navbar .links,
  .navbar .connect,
  .creation {
    display: flex;
    width: auto;
  }

  .navbar .links,
  .navbar .profile-connect,
  .deconnect {
    display: flex;
    margin: auto;
  }

  .navbar .burger-menu-button {
    display: none;
  }

  .burger-menu {
    display: none;
  }

  #logoSite {
    margin: 50px;
    width: 120px;
  }

  .links {
    flex-direction: row;
  }

  .social-links {
    margin-top: 0px;
  }

  .burger-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cours {
    width: 65%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
  }

  .cours-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .cours-cards div img {
    width: 100%;
  }

  .cours-button {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: nowrap;
    align-content: flex-start;
    width: 100%;
  }

  .planning {
    display: flex;
    justify-content: center;
    margin: 50px 50px;
    flex-direction: column;
    align-content: stretch;
    flex-wrap: wrap;
    align-items: center;
  }

  .planning-cards {
    display: flex;
    width: 88%;
  }

  .planning-cards-content h4 {
    width: 100%;
    padding-left: 44px;
  }

  .planning-cards-content h5 {
    width: 80%;
    text-align: left;
  }

  .planning-cards-content p {
    text-align: left;
    width: 79%;
  }

  .planning-cards-content > a {
    margin-left: 10px;
    text-align: left;
    width: 88%;
    padding-left: 40px;
  }

  .expertise {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }

  .expertise-title {
    width: 100%;
    margin: auto;
  }

  .expertise-title img {
    width: 64%;
    height: auto;
  }

  .expertise-title h5 {
    width: 52%;
  }

  .testimonial {
    display: flex;
    width: 75%;
  }

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

  .team-title h5 {
    width: 100%;
  }

  .team-cards {
    display: flex;
    width: 90%;
    flex-direction: row;
    margin-bottom: 50px;
  }

  main,
  .lessons {
    width: 100%;
  }

  .lessons-section {
    margin-bottom: 200px;
  }

  main,
  .lessons {
    width: 100%;
  }

  .container-lessons-left {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 0px;
    background-color: #f5e6c3;
    padding: 20px;
  }

  .container-lessons-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
    width: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 0px;
    background-color: #f5e6c3;
    padding: 20px;
  }

  .container-lessons-right > img {
    width: 40%;
  }

  .lessons-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alignement à gauche */
    text-align: left;
    width: 40%;
    margin-top: 20px;
    margin-left: 100px;
  }

  .lessons-desc > h2 {
    text-align: left;
    width: auto;
  }

  .lessons-desc > p {
    text-align: left;
    width: 50%;
    margin-bottom: 10px;
  }

  .lessons-img {
    display: flex;
    flex: 1;
    /* Laisse l'image occuper l'espace restant */
    justify-content: flex-end;
  }

  .lessons-img img {
    max-width: 80%;
    /* Évite que l'image soit trop grande */
    height: auto;
    padding: 100px;
  }

  .tarif {
    margin-bottom: 10px;
  }

  .tarif > p {
    text-align: left;
    width: 100%;
    margin: auto;
  }

  .lessons-desc > h3 {
    margin-top: none;
    margin-top: 10px;
    font-size: 20px;
  }

  .lessons-desc > ul {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lessons-desc > ul > li {
    margin-bottom: 10px;
    gap: 20px;
    color: #505050;
    font-weight: regular;
  }

  .lessons-desc > button {
    margin-top: 10px;
    margin-bottom: 40px;
    width: auto;
  }

  .lessons-title {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 100px;
  }

  .lessons-section {
    position: relative;
  }

  .lessons-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pexels-karolina-grabowska-4498185.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .lessons-title h1 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .lessons-title p {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .teams-title h1 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
  }

  .teams-title p {
    width: 36%;
    font-weight: regular;
    text-align: left;
    color: #505050;
  }

  .teams-title {
    align-items: center;
  }

  .teams-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .teams-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/moniteur-couverture.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .teams-container-admin {
    display: flex;
    flex-direction: row;
  }

  .teams-container-admin > div {
    margin: 100px;
  }

  .teams-container-moniteurs {
    display: flex;
    flex-direction: row;
  }

  .teams-container-moniteurs > div {
    margin: 26px;
  }

  .section-one {
    display: flex;
    flex-direction: row;
  }

  .section-two {
    display: flex;
    flex-direction: row;
  }

  .section-one > div > img {
    margin: 20px;
    width: 90%;
  }

  .section-two > div > img {
    margin: 20px;
    width: 90%;
  }

  .section-title {
    align-items: flex-start;
    margin: 100px;
  }

  .contact-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/xennie-moore-lbYNGpqNsnI-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .section-title h1 {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .section-title p {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
    width: 35%;
  }

  .container-contact > div > img {
    display: block;
  }

  .container-contact {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin-top: 131px;
    margin-left: 50px;
    margin-bottom: 100px;
  }

  .cours-button > a {
    margin-top: 50px;
    width: 30%;
  }

  .contact-infos {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .mail {
    margin-right: 200px;
  }

  .contact-form button {
    width: 50%;
  }

  .contact-form {
    width: 100%;
  }

  .contact-location {
    display: flex;
    flex-direction: row;
  }

  .contact-location > div {
    margin: 50px;
  }

  .address {
    width: 50%;
  }

  .map {
    margin: 50px;
    width: 50%;
  }

  .contact-location > div > iframe {
    width: 100%;
  }

  .account-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
  }

  .account-title > h2 {
    font-size: 35px;
  }

  .account-title > img {
    display: none;
  }

  .container-account {
    display: flex;
    flex-direction: unset;
    margin-top: 50px;
    width: fit-content;
    margin: auto;
  }

  .account-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
  }

  .account-button > button {
    width: 30%;
    margin: auto;
  }

  .connect-account {
    width: 50%;
    margin: auto;
    margin-top: 100px;
  }

  .regulations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: url(../images/image-vide.png) center/cover
      no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .about {
    margin-top: 250px;
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
  }

  .about-title {
    display: flex;
    justify-content: center;
  }

  .about-title > h2 {
    font-size: 48px;
    font-weight: bold;
  }

  .about > div {
    margin: 50px;
    width: 50%;
  }

  .about > div > p {
    margin: auto;
    width: auto;
    display: block;
    padding: auto;
    display: contents;
    background-color: white;
    box-shadow: -10px 7px 0px 2px #fdd9a8;
    border-radius: 20px;
  }

  .about-img {
    width: max-content;
    margin: auto;
  }

  .about-img > img {
    width: auto;
  }

  .regulations-title > h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .regulations-infos {
    width: 50%;
    margin: auto;
    margin-bottom: 50px;
  }

  .regulations-infos > h3 {
    font-size: 24px;
    margin: 50px;
  }

  .regulations-infos > p {
    font-size: 20px;
  }

  .regulations-infos > ul > li {
    margin-top: 30px;
  }

  .container-profile {
    width: 50%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .picture-profile-dog > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
  }

  .section-button {
    margin-bottom: 50px;
    flex-direction: row;
    justify-content: center;
  }

  .container-modif {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 70%;
    margin: 50px auto;
  }

  .account-modif-one {
    width: 37%;
    margin: auto;
    padding: 50px;
  }

  .account-modif-two {
    width: 37%;
    margin: auto;
    padding: 50px;
  }

  .modif-btn {
    margin-top: 50px;
  }

  .container-account-dog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    background-color: white;
    box-shadow: -10px 7px 0px 2px #fdd9a8;
    border-radius: 20px;
    width: 50%;
  }

  .container-account-dog > form {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .account-dog-btn {
    margin: 50px 0 50px 0;
  }

  .account-profile-picture {
    width: 51%;
    margin-bottom: 50px;
  }

  .account-dog-btn {
    width: auto;
    margin: 50px auto 50px;
  }

  .reservation-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .reservation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/anna-dudkova-mHzXM0FwYCI-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .regulations-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .regulations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/leo_visions-xJ6dJGM8KuM-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .regulations-button {
    margin-bottom: 5px;
  }

  .account-form {
    width: 60%;
  }

  .account-form-dog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
  }

  .search-form > select {
    width: 90%;
  }

  .planning-cards-reservation {
    display: flex;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .card-content-reservation {
    width: 30%;
    margin: 50px;
  }

  .card-content-reservation > img {
    width: 100%;
  }
}

/* Responsive 1400px */
@media (min-width: 1400px) {
  .container {
    margin: 50px;
  }

  .section-acceuil-img {
    width: 30%;
  }

  .section-acceuil {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
    width: 50%;
    padding-right: 80px;
  }

  .container {
    display: flex;
    justify-content: center;
    margin: 50px 50px;
    flex-direction: row;
    align-content: flex-end;
  }

  .section-acceuil-img {
    display: block;
  }

  .menus {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    flex-direction: row;
  }

  .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    flex-direction: row;
  }

  .navbar .links,
  .navbar .connect,
  .creation {
    display: flex;
    width: auto;
  }

  .navbar .links,
  .navbar .profile-connect,
  .deconnect {
    display: flex;
    margin: auto;
  }

  .profile-connect {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #505050;
  }

  .navbar .burger-menu-button {
    display: none;
  }

  .burger-menu {
    display: none;
  }

  #logoSite {
    margin: 50px;
    width: 120px;
  }

  .links {
    flex-direction: row;
  }

  .social-links {
    margin-top: 0px;
  }

  .burger-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cours {
    width: 65%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
  }

  .cours-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .cours-cards div img {
    width: 100%;
  }

  .cours-button {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: nowrap;
    align-content: flex-start;
    width: 100%;
  }

  .planning {
    display: flex;
    justify-content: center;
    margin: 50px 50px;
    flex-direction: column;
    align-content: stretch;
    flex-wrap: wrap;
    align-items: center;
  }

  .planning-cards {
    display: flex;
    width: 80%;
  }

  .planning-cards-content h4 {
    width: 91%;
    text-align: left;
    padding-left: 40px;
  }

  .planning-cards-content h5 {
    width: 88%;
    text-align: left;
  }

  .planning-cards-content p {
    text-align: left;
    width: 88%;
  }

  .planning-cards-content > a {
    margin-left: 10px;
    text-align: left;
    width: 88%;
    padding-left: 30px;
  }

  .expertise {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }

  .expertise-title {
    width: 100%;
    margin: auto;
  }

  .expertise-title img {
    width: 64%;
    height: auto;
  }

  .expertise-title h5 {
    width: 52%;
  }

  .testimonial {
    display: flex;
    width: 75%;
  }

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

  .team-title h5 {
    width: 100%;
  }

  .team-cards {
    display: flex;
    width: 80%;
    flex-direction: row;
    margin-bottom: 50px;
  }

  .lessons-section {
    margin-bottom: 200px;
  }

  main,
  .lessons {
    width: 100%;
  }

  .container-lessons-left {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 0px;
    background-color: #f5e6c3;
    padding: 20px;
  }

  .container-lessons-right {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
    width: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 0px;
    background-color: #f5e6c3;
    padding: 20px;
  }

  .container-lessons-right > img {
    width: 40%;
  }

  .lessons-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alignement à gauche */
    text-align: left;
    width: 40%;
    margin-top: 20px;
    margin-left: 100px;
  }

  .lessons-img {
    display: flex;
    flex: 1;
    /* Laisse l'image occuper l'espace restant */
    justify-content: center;
  }

  .lessons-img img {
    max-width: 80%;
    /* Évite que l'image soit trop grande */
    height: auto;
    padding: 100px;
  }

  .lessons-desc > h2 {
    text-align: left;
    width: auto;
  }

  .lessons-desc > p {
    text-align: left;
    width: 50%;
    margin-bottom: 10px;
  }

  .lessons-img {
    display: flex;
    flex: 1;
    /* Laisse l'image occuper l'espace restant */
    justify-content: center;
  }

  .lessons-img img {
    max-width: 80%;
    /* Évite que l'image soit trop grande */
    height: auto;
    padding: 100px;
  }

  .tarif {
    margin-bottom: 10px;
  }

  .tarif > p {
    text-align: left;
    width: 100%;
    margin: auto;
  }

  .lessons-desc > h3 {
    margin-top: none;
    margin-top: 10px;
    font-size: 20px;
  }

  .lessons-desc > ul {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lessons-desc > ul > li {
    margin-bottom: 10px;
    gap: 20px;
    color: #505050;
    font-weight: regular;
  }

  .lessons-desc > button {
    margin-top: 10px;
    margin-bottom: 40px;
    width: auto;
  }

  .lessons-title {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 100px;
  }

  .lessons-section {
    margin-bottom: 30px;
  }

  .lessons-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pexels-karolina-grabowska-4498185.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .lessons-title h1 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .lessons-title p {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .section-title p {
    text-align: left;
  }

  .teams-title {
    align-items: center;
  }

  .teams-title h2 {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .teams-title p {
    font-size: 24px;
    font-weight: regular;
    color: #505050;
  }

  .teams-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .teams-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/moniteur-couverture.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .teams-button {
    margin-bottom: 5px;
  }

  .teams-container-admin {
    display: flex;
    flex-direction: row;
  }

  .teams-container-admin > div {
    margin: 100px;
  }

  .teams-container-moniteurs {
    display: flex;
    flex-direction: row;
  }

  .teams-container-moniteurs > div {
    margin: 50px;
  }

  .section-one {
    display: flex;
    flex-direction: row;
  }

  .section-two {
    display: flex;
    flex-direction: row;
  }

  .section-one > div > img {
    margin: 20px;
  }

  .section-two > div > img {
    margin: 20px;
  }

  .contact-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/xennie-moore-lbYNGpqNsnI-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .section-title h1 {
    background-color: wheat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px;
  }

  .container-contact > div > img {
    display: block;
  }

  .container-contact {
    display: flex;
    flex-direction: row;
    width: 84%;
    margin-top: 130px;
    margin-left: 50px;
    margin-bottom: 100px;
  }

  .cours-button > a {
    margin-top: 50px;
    width: 25%;
  }

  .contact-infos {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .mail {
    margin-right: 200px;
  }

  .contact-form button {
    width: 50%;
  }

  .contact-form {
    width: 100%;
  }

  .contact-location {
    display: flex;
    flex-direction: row;
  }

  .contact-location > div {
    margin: 50px;
  }

  .address {
    width: 50%;
  }

  .map {
    margin: 50px;
    width: 50%;
  }

  .account-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
  }

  .account-title > h2 {
    font-size: 35px;
  }

  .account-title > img {
    display: none;
  }

  .container-account {
    flex-direction: row;
    width: fit-content;
    margin: 50px auto;
  }

  .container-account > form > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: fit-content;
    margin: auto;
  }

  .account-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
  }

  .account-button > button {
    width: 30%;
    margin: auto;
  }

  .connect-account {
    width: 50%;
    margin: auto;
    margin-top: 100px;
  }

  .regulations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: url(../images/image-vide.png) center/cover
      no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .about {
    margin-top: 250px;
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
  }

  .about-title {
    display: flex;
    justify-content: center;
  }

  .about-title > h2 {
    font-size: 48px;
    font-weight: bold;
  }

  .about > div {
    margin: 50px;
    width: 50%;
  }

  .about > div > p {
    margin: auto;
    width: auto;
    display: block;
    padding: auto;
    background-color: white;
    box-shadow: -10px 7px 0px 2px #fdd9a8;
    border-radius: 20px;
  }

  .about-img {
    width: max-content;
    margin: auto;
  }

  .about-img > img {
    width: auto;
  }

  .regulations-title > h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .regulations-infos {
    width: 50%;
    margin: auto;
    margin-bottom: 50px;
  }

  .regulations-infos > h3 {
    font-size: 24px;
    margin: 50px;
  }

  .regulations-infos > p {
    font-size: 20px;
  }

  .regulations-infos > ul > li {
    margin-top: 30px;
  }

  .container-profile {
    width: 50%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .picture-profile-dog > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
  }

  .section-button {
    width: max-content;
    margin: auto;
    flex-direction: row;
    justify-content: center;
  }

  .container-modif {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 70%;
    margin: 50px auto;
  }

  .account-modif-one {
    width: 37%;
    margin: auto;
    padding: 50px;
  }

  .account-modif-two {
    width: 37%;
    margin: auto;
    padding: 50px;
  }

  .modif-btn {
    margin-top: 50px;
  }

  .container-account-dog {
    width: 50%;
    margin: 0 auto 50px auto;
  }

  .container-account-dog > form {
    margin-top: 50px;
  }

  .account-dog-btn {
    margin: 50px 0 50px 0;
  }

  .account-profile-picture {
    width: 39%;
    margin-bottom: 50px;
  }

  .account-dog-btn {
    width: auto;
    margin: 50px auto 50px;
  }

  .reservation-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .reservation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/anna-dudkova-mHzXM0FwYCI-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .regulations-section {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    z-index: 1;
  }

  .regulations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/leo_visions-xJ6dJGM8KuM-unsplash.jpg)
      center/cover no-repeat;
    opacity: 0.8;
    /* Ajuste l'opacité ici */
    z-index: -1;
    /* Place l'image en arrière-plan */
  }

  .regulations-button {
    margin-bottom: 5px;
  }

  .access-profile {
    background-color: none;
  }

  .account-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
  }

  .account-form-dog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
  }

  .search-form > select {
    width: 18%;
  }

  .planning-cards-reservation {
    display: flex;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .card-content-reservation {
    width: 30%;
    margin: 50px;
  }

  .card-content-reservation > img {
    width: 50%;
    height: 200px;
    object-fit: cover;
  }

  .table-reservation > h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    font-weight: bold;
    color: #d06310;
    font-size: 30px;
  }

  .table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    width: 95%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .table-container > table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
  }

  .table-container thead {
    background-color: #6e00c8;
    color: white;
    text-align: left;
  }

  .table-container th,
  .table-container td {
    padding: 14px 18px;
    border-bottom: 1px solid #ddd;
  }

  .table-container tbody tr:hover {
    background-color: #f1f1f1;
  }

  .table-container td:last-child {
    text-align: center;
  }
}
