/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@700;800&display=swap');

/* Style global */
body {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #212121; /* noir profond */
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; /* extra bold */
  line-height: 1;
  color: #212121;
  display: inline-block;
}

/* Exemple pour le Hero Title */
h1 {
  font-size: 2.8rem;
  color: #212121; /* jaune miel pour attirer l'œil */
}

h2 {
  font-size: 2.8rem;
}

/* Paragraphes */
p {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 15px 0;
  color: #424242; /* gris doux, meilleur pour lecture */
}

/* Call-to-Action bouton */
.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background-color: #FFC107;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #FFB300; /* variante plus foncée au hover */
}

header{    
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.material-symbols-outlined {
  vertical-align: middle;
}

input { border: none; border-bottom: 2px solid #0a1a44; outline: none; padding-top: 2px; padding-bottom: 2px; }

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 600px;
    border-radius: 5px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: block;
    text-align: right; /* Align text to the right */
}

.dropdown-button:hover {
    background-color: #ddd;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: -130px;
    margin-top: 10px;
    right: 0; /* Align the dropdown to the right */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 280px;
    padding: 10px 0;
}

.dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    text-align: left; /* Align links to the right */
}

.dropdown-content a:hover {
    background-color: #edecd2;
}

.dropdown.active .dropdown-content {
    display: block;
}
