.services-tableau {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.service-vignette {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  width: 200px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-vignette img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.service-vignette:hover {
  transform: scale(1.05);
}

.service-vignette h3 {
  margin-top: 10px;
  font-size: 1.2em;
  color: #333;
}
/* Container général pour chaque entrée */
.business-info {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style pour le nom de l'entreprise */
.business-info h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

/* Style pour les paragraphes d'informations */
.business-info p {
  font-size: 1em;
  color: #555;
  margin: 5px 0;
}

/* Style spécifique pour le lien du site web */
.business-info a {
  color: #007bff;
  text-decoration: none;
}

.business-info a:hover {
  text-decoration: underline;
}

/* Style pour les heures d'ouverture */
.business-info ul {
  list-style-type: none;
  padding-left: 0;
}

.business-info ul li {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

/* Style pour la note */
.business-info .rating {
  font-weight: bold;
  color: red;
  font-size: 1.2em;
}
.hidden-title {
  display: none;
}

.content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    line-height: 1.6;
}
.hero-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


.button-container {
    text-align: center;   /* Centre le bouton horizontalement */
    margin-top: 20px;     /* Ajoute un espace au-dessus du bouton */
}

.button.button-red {
    display: inline-flex;           /* Utilise inline-flex pour centrer le contenu du bouton */
    justify-content: center;        /* Centre le texte horizontalement à l'intérieur du bouton */
    align-items: center;            /* Centre le texte verticalement à l'intérieur du bouton */
    background-color: #ff3b3f;      /* Rouge vif */
    color: white;                   /* Texte en blanc */
    padding: 18px 40px;             /* Espace intérieur confortable */
    font-size: 1.5em;               /* Agrandit la taille du texte */
    text-decoration: none;          /* Supprime la décoration de lien */
    border-radius: 30px;            /* Bords arrondis */
    font-weight: bold;              /* Texte en gras */
    line-height: 1;                 /* Ajuste la hauteur de ligne pour un centrage parfait */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button.button-red:hover {
    background-color: #d9363b;      /* Rouge légèrement plus foncé au survol */
    transform: scale(1.05);         /* Mise en avant du bouton au survol */
}
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}
.thumbnail-item {
    text-align: center;
}
.thumbnail-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Couleurs pour chaque section */
.section-restauration {
  background-color: #FF6F61; /* Rouge */
  color: #ffffff; /* Texte blanc pour contraster */
}

.section-artisans {
  background-color: #4A90E2; /* Bleu */
  color: #ffffff;
}

.section-sante {
  background-color: #7BC143; /* Vert */
  color: #ffffff;
}

.section-fun {
  background-color: #F5A623; /* Orange */
  color: #ffffff;
}

.section-administratif {
  background-color: #9B9B9B; /* Gris */
  color: #ffffff;
}


#footer {
  background-color: #f8f9fa;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.footer-menus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-column {
  margin: 0 15px;
}

.footer-column h4 {
  font-size: 1.1em;
  margin: 0 0 10px;
}

.footer-column h4 a {
  color: #333;
  text-decoration: none;
}

.footer-column h4 a:hover {
  text-decoration: underline;
}

#footer p {
  margin: 5px 0;
  font-size: 0.9em;
  color: #666;
}

#footer p a {
  color: #333;
  text-decoration: none;
}

#footer p a:hover {
  text-decoration: underline;
}
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Optionnel, pour centrer verticalement aussi */
  text-align: center;
}

.image-container img {
  max-width: 100%; /* Assure une bonne mise en page responsive */
  height: auto;
}
.suggestions {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: Arial, sans-serif;
}

.suggestions h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

.suggestion-category {
  margin-bottom: 20px;
}

.suggestion-category h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #555;
}

.suggestion-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestion-category ul li {
  display: inline-block;
  margin: 0 10px;
}

.suggestion-category ul li a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.suggestion-category ul li a:hover {
  text-decoration: underline;
}
.suggestion-paragraph {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin: 20px 0;
  line-height: 1.6;
}

.suggestion-paragraph a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.suggestion-paragraph a:hover {
  text-decoration: underline;
}
.suggestion-paragraph {
  text-align: center;
  font-size: 14px;
  margin: 20px 0;
  line-height: 1.6;
  color: #333;
}

.suggestion-paragraph a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.suggestion-paragraph a:hover {
  text-decoration: underline;
}

