/* Template Design by Bella Ismérie 01/03/2026
   Propriété exclusive - Toute reproduction sans accord est interdite.
*/


/* --- STRUCTURE GLOBALE --- */
.oracle-wrapper {
    background-color: #1a051a;
    color: white;
    min-height: 85vh;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* BLOC RÉSULTAT (Fixe la carte à côté du texte) */
.result-layout {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px !important;
    margin: 40px auto !important;
    max-width: 1000px !important;
    width: 100% !important;
}

/* L'ENCADRÉ DORÉ */
.interpretation-box {
    flex: 1 !important;
    max-width: 500px !important;
    border: 1px solid #c5a059 !important;
    padding: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    text-align: left !important;
    text-transform: none !important; /* Force les minuscules */
}

/* LE TEXTE DE DESCRIPTION */
#card-interpretation {
    text-transform: none !important;
    color: white !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* SUPPRESSION DES ESPACES ENTRE PARAGRAPHES */
.diag-style, .conseil-style {
    display: block !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
}

.diag-style {
  color: #ffcc00 !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  display: inline !important; /* CHANGÉ : block -> inline */
  margin-right: 5px !important; /* Ajoute un petit espace avant le texte */
}

.conseil-style {
  color: #d1b3ff !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  display: inline !important; /* CHANGÉ : block -> inline */
  margin-right: 5px !important;
}

/* LA CARTE */
#card-image {
    width: 200px !important;
    border: 2px solid #c5a059 !important;
    border-radius: 10px !important;
    display: block !important;
    flex-shrink: 0 !important;
}

#card-image.reversed { transform: rotate(180deg); }

#card-title {
    color: #c5a059;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* On s'assure que le bloc de conseil commence quand même sur une nouvelle ligne par rapport au diagnostic */
#card-interpretation br {
    display: block;
    content: "";
    margin-top: 10px; /* C'est ici que tu gères l'espace entre les deux blocs */
    }

/* MOBILE */
@media (max-width: 768px) {
    .result-layout {
        flex-direction: column !important;
        align-items: center !important;
    }
    .interpretation-box {
        width: 90% !important;
    }
}
