@charset "UTF-8";
@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+Mono:ital,wght@0,100..700;1,100..700&display=swap");
/* --- Configuration Globale --- */
* {
  padding: 0;
  margin: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  /* ✅ ACTIVÉ : Indispensable pour que les paddings et bordures n'ajoutent pas de largeur aux éléments */
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  display: grid;
  background-color: whitesmoke;
  grid-template-columns: 1fr;
  grid-template-rows: 80px 1fr auto;
  grid-template-areas: "navBar" "main" "footer";
  min-height: 100vh; /* min-height est plus flexible que height */
  position: relative;
}

/* --- Barre de Navigation --- */
nav {
  grid-area: navBar;
  top: 0;
  height: 80px;
  position: sticky;
  background: linear-gradient(90deg, #1b5895, #464646);
  color: white;
  padding: 5px 20px; /* Ajout d'un padding horizontal */
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between; /* space-between est plus courant pour les navbars */
  width: 100%;
}

nav div.headNav {
  display: flex;
  align-items: center;
}

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

/* ✅ CORRIGÉ : L'icône burger, cachée par défaut sur grand écran */
.navBar .icon {
  display: none; /* Caché sur grand écran */
  padding: 5px;
  border-radius: 24px;
  cursor: pointer;
  z-index: 999;
}

.navBar .icon:hover {
  background-color: #fff;
  color: #333;
}

/* ✅ CORRIGÉ : Le menu textuel pour grand écran */
.contBtnNav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px; /* Utiliser gap pour espacer les éléments */
  font-size: 1.1em;
}

.contBtnNav li a {
  color: white;
  padding: 8px 15px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.contBtnNav li a:hover {
  color: #1b5895;
  background-color: white;
}

/* --- Contenu Principal --- */
main {
  grid-area: main;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre le contenu horizontalement */
  width: 100%;
}

.headerMain {
  background-image: url("../img/salle.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* ✅ CORRIGÉ : min-height est plus flexible que height */
  min-height: 60vh;
  width: 100%;
  color: white;
  box-shadow: inset 0 0 0 100vw rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px; /* Ajout de padding pour le texte */
  margin-bottom: 20px;
}

.headerMain h1 {
  color: whitesmoke;
  font-size: 3em;
  text-shadow: 0px 0px 20px #1b5895;
}

/* --- Conteneurs et Cartes --- */
.container {
  border-radius: 16px;
  width: 100%;
  max-width: 1200px; /* Limite la largeur sur très grands écrans */
  display: flex;
  flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
  justify-content: center; /* Centre les cartes */
  align-items: stretch; /* Aligne les cartes sur la même hauteur */
  gap: 20px; /* Espace entre les cartes */
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  background: #fff;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.colCont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px auto;
  min-height: 200px;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 16px;
}

.colCont h2 {
  transform: skew(-10deg);
}

.colCont h3 {
  color: #1b5895;
}

.colCont p {
  padding: 10px;
}

/* --- Pied de page --- */
footer {
  grid-area: footer;
  text-align: center;
  padding: 2em;
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
footer a {
  color: white;
  padding: 5px;
  border-radius: 14px;
}
footer a:hover {
  background-color: #fff;
  color: #1b5895;
  transition: 0.3s ease;
}
footer p {
  color: white;
  font-size: 0.9em;
  margin: 10px 0;
}

.spacer {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 50%;
  margin: 30px;
}

.rowFoot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  margin-top: 20px;
  color: white;
  width: 100%;
  text-align: center;
}

.colFoot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
  min-width: 150px;
  max-width: 450px;
  width: 100%;
}

.colFootSpe {
  flex-direction: row;
}

.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon2 {
  position: relative;
  background: transparent;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon2:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon2:hover span,
.wrapper .icon2:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .phone:hover,
.wrapper .phone:hover .tooltip,
.wrapper .phone:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

input[type=text], input[type=email], textarea {
  width: 300px;
  padding: 15px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 0 12px 4px rgba(27, 88, 149, 0.35), 0 0 40px 10px rgba(27, 88, 149, 0.15);
  text-align: center;
  margin-top: 10px;
}
input[type=text]:hover, input[type=email]:hover, textarea:hover {
  box-shadow: 0 0 12px 4px rgba(0, 200, 83, 0.35), 0 0 40px 10px rgba(0, 200, 83, 0.15);
  transition: box-shadow 0.3s ease;
}

textarea {
  height: 150px;
}

input[type=submit] {
  width: 200px;
  padding: 10px;
  border-radius: 24px;
  border: none;
  background-color: #1877f2;
  cursor: pointer;
  color: #fff;
}
input[type=submit]:hover {
  background-color: #1b5895;
  transition: 0.4s ease-in-out;
  width: 250px;
}

/* ... (vos autres styles comme .social-links, .sous-menu, etc. peuvent suivre ici) ... */
/* ======================================================= */
/* ## SECTION RESPONSIVE : Pour les écrans < 768px (MOBILES) */
/* ======================================================= */
@media (max-width: 1110px) {
  /* On affiche l'icône burger et on cache le menu textuel */
  .navBar .icon {
    display: block;
  }
  .navBar .contBtnNav {
    display: none;
  }
  /* Styles pour le menu quand il est ouvert via JavaScript (classe .active) */
  .navBar .contBtnNav.active {
    display: flex;
    flex-direction: column; /* Liens les uns sous les autres */
    align-items: center;
    gap: 25px;
    padding: 40px 0;
    position: fixed; /* Superposition sur toute la page */
    top: 80px; /* En dessous de la navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); /* Hauteur restante */
    background: rgba(20, 20, 30, 0.85);
  }
  .headerMain h1 {
    font-size: 2.2em; /* Taille de police plus petite sur mobile */
  }
}/*# sourceMappingURL=main.css.map */