/* === Base générale === */
body {
    margin: 0;
    padding: 0;
    background-color: #000080; /* Bleu foncé */
    font-family: 'Georgia', serif;
    color: #000;
  }
  
  /* === Typographies === */
  h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: bold;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.2rem;
    text-align: center;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* === Conteneurs === */
  .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
  }
  
  .card {
    background-color: white;
    border-radius: 60px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  /* === Formulaires === */
  form input[type="email"],
  form input[type="text"],
  form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
  }
  
  form textarea {
    resize: vertical;
    height: 120px;
  }
  
  /* === Boutons === */
  .btn-gold {
    background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B);
    color: #000080;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-gold:hover {
    filter: brightness(1.1);
  }
  
  /* === Messages formulaire === */
  .message {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
  }
  
  .success {
    color: green;
  }
  
  .error {
    color: red;
  }
  
  /* === Menu principal === */
  .menu-container {
    background-color: #000080;
    padding: 20px;
    text-align: center;
  }
  
  .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .main-menu > li {
    display: inline-block;
    position: relative;
  }
  
  .dropdown-toggle {
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    transition: background 0.3s;
  }
  
  .dropdown-toggle:hover {
    background-color: #001199;
    border-radius: 8px;
  }
  
  /* === Dropdown menu === */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: blue;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 1000;
  }
  
  .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu a {
    color: #000080;
    text-decoration: none;
    display: block;
    padding: 12px 18px;
    font-weight: 500;
  }
  
  .dropdown-menu a:hover {
    background-color: #f2f2f2;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .hero_home_heading {
    font-size: 32px;
    font-weight: bold;
    color: transparent; /* On rend le texte transparent pour pouvoir appliquer un dégradé */
    background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B); /* Dégradé doré */
    -webkit-background-clip: text; /* Cette propriété applique le fond au texte */
    background-clip: text; /* Applique également l'effet sur le texte */
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase; /* Transforme le texte en majuscules, comme dans le bouton */
    letter-spacing: 1px; /* Espacement des lettres pour donner un effet plus aéré */
    display: inline-block;
    transition: background-color 0.3s ease; /* Ajout d'une transition pour un effet au survol */
  }
  .dropdown-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: white;
    color: #0A1F44;
  }
  
  .dropdown-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .dropdown-section {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-title {
    font-weight: bold;
    color: #BFA046; /* doré */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }
  
  .dropdown-link {
    text-decoration: none;
    color: #0A1F44;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-link:hover {
    color: #BFA046;
  }
  
  .dropdown-subtitle {
    font-size: 0.8rem;
    color: #6B7280;
  }
  
  .dropdown-cta {
    flex: 0.8;
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
  }
  
  .cta-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #0A1F44;
  }
  
  .cta-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0A1F44;
  }
  
  .cta-text {
    font-size: 0.9rem;
    color: #6B7280;
  }
  
  .cta-button {
    background-color: #BFA046;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .cta-button:hover {
    background-color: #A78830;
  }
  
  .dropdown-grid.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* ou 32px selon ton design */
    padding: 2rem;
  }
  
  .dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .dropdown-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .dropdown-link {
    text-decoration: none;
    color: #222;
    display: block;
  }
  
  .dropdown-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.25rem;
  }
  
  .epargne-retraite-menu {
    color: white; /* Texte en blanc */
  }
  
  /* Pour les liens à l'intérieur de ce menu */
  .epargne-retraite-menu .dropdown-link {
    color: white; /* Texte des liens en blanc */
  }
  
  .epargne-retraite-menu .dropdown-link:hover {
    color: #ffcc00; /* Changer la couleur au survol */
  }
  
  /* Titre en blanc aussi */
  .epargne-retraite-menu .dropdown-title {
    color: white;
  }
  
  /* Pour les sous-titres en gris clair */
  .epargne-retraite-menu .dropdown-subtitle {
    color: #dcdcdc;
  }
  
  
  
  #epargne-retraite-dropdown .dropdown-link {
    color: white; /* Texte des liens en blanc */
  }
  
  #epargne-retraite-dropdown .dropdown-title {
    color: white; /* Titre en blanc */
  }
  
  #epargne-retraite-dropdown .dropdown-subtitle {
    color: #dcdcdc; /* Sous-titres en gris clair */
  }
  
  #epargne-retraite-dropdown .dropdown-link:hover {
    color: #ffcc00; /* Changer la couleur au survol */
  }
.slider-group {
    margin-bottom: 20px;
    font-family: Arial;
  }
  .slider-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  .slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #d3e2ee;
    border-radius: 4px;
    outline: none;
  }
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: blue;
    border-radius: 50%;
    cursor: pointer;
  }
  .slider-value {
    font-size: 1.4em;
    color: blue;
    font-weight: bold;
    text-align: right;
    margin-top: 5px;
  }
  .slider-min, .slider-max {
    width: 60px;
    font-size: 0.9em;
    color: #777;
  }
  .simulateur-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: auto;
  }
  
  .slider-group label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1em;
    display: block;
  }
  
  .slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #d3e2ee;
    border-radius: 4px;
    outline: none;
  }
  
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B);;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-min, .slider-max {
    width: 60px;
    font-size: 0.9em;
    color: #777;
    text-align: center;
  }
  
  .slider-value {
    font-size: 1.4em;
    color: transparent; /* Rendre le texte transparent */
    font-weight: bold;
    text-align: right;
    background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B); /* Appliquer le gradient */
    
    -webkit-background-clip: text; /* Applique le dégradé au texte pour Chrome/Safari */
    background-clip: text; /* Applique le dégradé au texte pour Firefox */
}

  
  .simulateur-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    padding: 20px;
  }
  
  .simulateur-sliders {
    flex-basis: 45%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  


  
.simulateur-resultat {
    display: flex;
    align-items: center; /* Aligne verticalement les éléments */
    justify-content: flex-start; /* Aligner à gauche ou centré selon besoin */
  }
  
  .resultat-box {
    background-color: #f6f8fa;
    padding: 10px 30px; /* Ajuste l'espace interne */
    border-radius: 12px;
    font-size: 2em;
    font-weight: bold;
    color: transparent; /* Rendre le texte transparent pour voir le dégradé */
    background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B); /* Appliquer le gradient au texte */
    font-family:Arial, Helvetica, sans-serif;
    -webkit-background-clip: text; /* Applique le dégradé au texte pour Chrome/Safari */
    background-clip: text; /* Applique le dégradé au texte pour Firefox */
    position: relative; /* Nécessaire pour le pseudo-élément */
    z-index: 1;
  }
  
  .simulateur-resultat h2 {
    margin-right: 10px; /* Ajoute un petit espace entre le titre et le résultat */
  }
  
  .fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  

  .graph-zone {
    flex-grow: 1;
    padding: 20px;
    background: url('assets/images/texture.jpg');
    background-size: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  #barComparisonChart {
    max-width: 100%;
    height: 800px;
  }
  
  
  #allocationChart {
    max-width: 100%;
    height: auto;
  }
  
  #capitalFinal {
    visibility: hidden;
  }

  /* Cacher la div capitalFinal tout en la laissant dans le flux */
#capitalFinal {
  visibility: hidden; /* Cache l'élément mais il reste dans le flux */
  position: absolute; /* Permet de le positionner par-dessus les autres éléments */
  top: 0;
  left: 0;
  width: 100%; /* Si tu veux qu'il prenne toute la largeur de son conteneur */
  height: 100%; /* Idem pour la hauteur */
}

/* Appliquer le dégradé au texte de differenceDisplay */
#differenceDisplay{
    position: relative;
    z-index: 2;
    color: transparent; /* Rendre le texte transparent */
    background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B); /* Appliquer le gradient */
    -webkit-background-clip: text; /* Applique le dégradé au texte pour Chrome/Safari */
    background-clip: text; /* Applique le dégradé au texte pour Firefox */
    font-weight: bold;
    font-size: 50px;
    padding: 10px;
}
#differenceDisplay2{
  position: relative;
  z-index: 2;
  color: transparent; /* Rendre le texte transparent */
  background: linear-gradient(45deg, #D4AF37, #B8860B, #FFD700, #B8860B); /* Appliquer le gradient */
  -webkit-background-clip: text; /* Applique le dégradé au texte pour Chrome/Safari */
  background-clip: text; /* Applique le dégradé au texte pour Firefox */
  font-weight: bold;
  font-size: 50px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .graph-zone {
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
  }

  #barComparisonChart {
    height: 300px !important; /* réduction pour mobile */
    width: 100% !important;
  }

  #differenceDisplay,
  #differenceDisplay2 {
    font-size: 28px;
    padding: 5px;
    text-align: center;
    display: block;
  }
}


.chart-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  color: white;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

/* Responsive : légende empilée */
@media screen and (max-width: 768px) {
  .chart-legend {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .legend-item {
    font-size: 16px;
  }
}
