:root {
  --primary-color: ;
  --secondary-color: ;
  --text-color: #222;
  --background-color: #ffffff;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.cta-button {
  background-color: ;
  color: white;
  border-radius: 10px;
  padding: 12px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: ;
color: white;
opacity: 0.9;   /* équivalent à 80% */
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  text-decoration: none;
}



body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: sans-serif;	
  background: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  text-align: left;
  font-size: 0.95rem; /* réduit la base */
}

/* Centrage spécifique à la page d'accueil */
.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.container {
  width: 100%;
padding-top: 15px;
  max-width: 80%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}


.logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.navbar-brand img {
  max-height: 34px;
  object-fit: contain;
  margin-top: 0px; /* ajuste si besoin */
}

#bot-search-results {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  box-sizing: border-box;
}

h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

h2 {
  font-size: 1.4rem; /* nouveau bloc pour h2 */
  margin-top: 1.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1rem; /* nouveau bloc pour h2 */
  margin-top: 1.2rem;
  color: var(--primary-color);
}

p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p, .lead {
  font-size: 1rem; /* avant : 1.1rem */
  line-height: 1.5;
}

ul li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

footer p {
  font-size: 0.85rem;
  color: #666;
}

#search-placeholder {
  width: 90%;
  margin: 1.5rem auto;
}

ul li i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

h1, h2 {
  font-weight: 600;
}


.grid-countries {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        margin-bottom: 24px;
    }
    .country-btn {
        display: block;
        padding: 12px;
        text-align: center;
        background: var(--primary-color);;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        font-weight: bold;
        transition: background 0.3s;
    }
    .country-btn:hover {
        background: var(--secondary-color);;
    }

.see-all-wrapper {
  margin-top: 1.5rem;
  text-align: left;
}

.see-all-text {
  display: inline-block;
  background: #f4f4f4;
  padding: 10px 14px;
  border-radius: 4px;
  color: #333;
  font-size: 0.90rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.see-all-text:hover {
  background: #e0e0e0;
  text-decoration: underline;
}

.see-all-text i {
  color: var(--secondary-color);
}

.faq-block {
  margin-top: 2rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.faq-block h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #2b74b1;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-weight: 600;
  padding: 0.8rem 1rem;
  border: none;
  background: #e6f0fb;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #d4e6f9;
}

.faq-answer {
  padding: 0.8rem 1rem;
  background: white;
  font-size: 0.95rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-question .icon-toggle {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .icon-toggle {
  transform: rotate(180deg);
}

#bloc-content,
#bloc-media {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem; /* plus léger */
  }

  h2 {
    font-size: 1.3rem;
  }

  .logo {
    max-width: 120px;
    margin-bottom: 1rem;
  }

  .container {
    padding: 1rem 0.8rem;
  }

  #search-placeholder {
    width: 100%;
    padding: 0;
    margin: 1rem auto;
  }

  p, .lead, ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  p, .lead, ul li {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .navbar-brand img {
    height: 32px;
  }

  .text-center,
  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
  }

  footer p {
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1rem;
  }

  p, .lead, ul li {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .navbar-brand img {
    height: 32px;
  }

  .text-center,
  .container {
    width: 100%;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    box-sizing: border-box;
  }

  footer p {
    font-size: 0.75rem;
  }
}


