
.loGo {
  position: absolute;
  right: 5%;
  top: 40px;
}

.imLogo {
  width: 100px;
  height: auto;
  max-height: 100px;
} 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Indie Flower', cursive;
}

h1, h2 {
  font-weight: bold;
  color: #75c7edae;
}

html {
  height: 100%;
  font-size: 14px;
}

p {
  font-size: 20px;
}

/* Navbar Styles */
.navbar {
  background-color: #75c7edae; /* Couleur claire */
    color: #333;
    position: relative;
    padding: 0; /* Pas de padding pour maximiser l'économie d'espace */
    font-size: 20px; /* Réduire légèrement la taille de la police */
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 40px; /* Fixer la hauteur de la navbar */
    display: flex;
    align-items: center; /* Aligner les éléments verticalement */
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center; /* Aligner les éléments verticalement */
}

.navbar ul li {
  display: inline-block;
    position: relative;
    margin-right: 10px; /* Réduire l'espacement entre les éléments */
}

.navbar ul li a {
  color: #333;
  padding: 5px; /* Réduire le padding pour minimiser l'espace vertical */
  text-decoration: none;
  display: block;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1; /* Réduire la hauteur des lignes */
}

.navbar ul li a:hover {
  background-color: #75c7edae;
  color: #000;
}

.navbar ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #75c7edae;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  list-style: none;
}

.navbar ul li:hover > ul {
  display: block;
}

.navbar ul li ul li {
  display: block;
}

.navbar ul li ul li a {
  padding: 10px 20px;
  font-size: 16px;
}

.navbar ul li ul li a:hover {
  background-color: #333;
  color: #75c7edae;
}

/* Hamburger Icon */
.hamburger {
  display: none;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px; /* Monter davantage l'icône hamburger */
    z-index: 1001;
}

.hamburger .line {
  width: 25px; /* Réduire légèrement la largeur des lignes */
    height: 3px; /* Réduire la hauteur des lignes */
    background-color: #333;
    margin: 4px 0; /* Réduire l'espacement entre les lignes */
    transition: 0.4s;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 9px;
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -9px;
}

/* Footer */
footer {
  margin-top: 110px;
  background-color: #75c7edae;
  border-radius: 20px;
  padding: 20px;
}

.footerr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.copyright {
  text-align: center;
  font-size: 16px;
  color: rgb(255, 255, 255);
}

.footerr h3 {
  font-size: 30px;
  color: rgb(255, 255, 255);
  letter-spacing: 3px;
  margin-top: 15px;
}

.footerr p {
  font-size: 15px;
}

iframe {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #75c7edae;
}

.navbar.open ul {
    display: block;
}

.navbar a {
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    width: 100%;
}

.navbar li {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: block;
}

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

  iframe {
    width: 100%;
  }
}
