@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
body header {
  background-color: #69181d;
  color: white;
  padding: 20px;
  text-align: center;
}
body header h1 {
  margin: 0;
  font-size: 2.5em;
}
body header nav {
  margin-top: 2px;
}
body header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
body header nav li {
  margin: 0 15px;
}
body header nav li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
body header nav li a:hover {
  text-decoration: underline;
}
body header .search-container {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}
body header .search-container .search-label {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
body header .search-container .search-input {
  width: 100%;
  padding: 12px;
  font-size: 1.2em;
  border: 2px solid #69181d;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: white;
  text-align: center;
}
body header .search-container .suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: none;
}
body header .search-container .suggestions-list.visible {
  display: block;
}
body header .search-container .suggestions-list li {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
}
body header .search-container .suggestions-list li:hover {
  background-color: #f1f1f1;
}
body footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 1.1em;
}
body footer p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
body footer a:hover {
  text-decoration: underline;
  color: #fdda25;
}
body footer p a {
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  body footer p {
    flex-direction: column;
    align-items: center;
  }
  body footer p a {
    margin-bottom: 5px;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
section {
  padding: 20px;
  text-align: center;
  background-color: #f4f4f4;
  /* Ajout d'une boîte d'ombre et d'un espacement pour chaque section */
  /* Spécial pour les liens d'email */
}
section .intro p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
section .editor, section .hosting, section .data-privacy, section .cookies, section .intellectual-property {
  margin: 20px 0;
}
section .editor h2, section .hosting h2, section .data-privacy h2, section .cookies h2, section .intellectual-property h2 {
  font-size: 1.5rem;
  color: #69181d;
  margin-bottom: 10px;
}
section .editor p, section .editor h3, section .hosting p, section .hosting h3, section .data-privacy p, section .data-privacy h3, section .cookies p, section .cookies h3, section .intellectual-property p, section .intellectual-property h3 {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
section .editor a, section .hosting a, section .data-privacy a, section .cookies a, section .intellectual-property a {
  color: #69181d;
  text-decoration: none;
}
section .editor a:hover, section .hosting a:hover, section .data-privacy a:hover, section .cookies a:hover, section .intellectual-property a:hover {
  text-decoration: underline;
}
section .data-privacy h3 {
  font-size: 1.2rem;
  margin-top: 10px;
}
section .cookies p {
  font-size: 1rem;
  color: #333;
}
section .intellectual-property p {
  font-size: 1rem;
  color: #333;
}
section .copyright {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
section > div {
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
section a[href^="mailto:"] {
  font-weight: bold;
}/*# sourceMappingURL=mentions.css.map */