/* =========================================
   TABLEAU DES ÉLÉMENTS ASTROLOGIQUES
========================================= */

.ca-elements-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espace entre chaque ligne */
}

/* Design de chaque ligne (façon "carte") */
.ca-elem-card {
    display: grid;
    grid-template-columns: 1.2fr 2fr 3.5fr; /* Répartition des 3 colonnes */
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 12px;
    padding: 20px;
    border-left: 5px solid transparent; /* Ligne de couleur sur le côté */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: #f1f5f9;
    transition: transform 0.3s ease;
}

.ca-elem-card:hover {
    transform: translateY(-3px); /* Petit effet de survol */
}

/* Couleurs spécifiques sur la bordure gauche pour chaque élément */
.ca-feu { border-left-color: #ef4444; }   /* Rouge */
.ca-terre { border-left-color: #22c55e; } /* Vert */
.ca-air { border-left-color: #38bdf8; }   /* Bleu ciel */
.ca-eau { border-left-color: #3b82f6; }   /* Bleu profond */

/* Colonne 1 : Le nom de l'élément */
.ca-elem-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Colonne 2 : Les Signes et Pictogrammes */
.ca-elem-signs {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 15px;
}

/* LE SECRET DE L'ALIGNEMENT PARFAIT DES PICTOGRAMMES */
.ca-emojis {
    display: flex;
    justify-content: center; /* Centre l'ensemble */
    gap: 15px; /* Espace exact entre chaque symbole */
    font-size: 24px;
    margin-bottom: 5px;
    color: #fbbf24; /* Couleur Or */
}

.ca-emojis span {
    display: inline-block;
    width: 30px; /* Force chaque symbole à prendre exactement la même largeur */
    text-align: center;
}

.ca-names {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

/* Colonne 3 : La description */
.ca-elem-desc {
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
}

/* =========================================
   ADAPTATION POUR LES MOBILES (Smartphone)
========================================= */
@media (max-width: 768px) {
    .ca-elem-card {
        grid-template-columns: 1fr; /* On passe sur 1 seule colonne (tout s'empile) */
        text-align: center;
        gap: 15px;
        padding: 25px 15px;
    }
    .ca-elem-name {
        justify-content: center;
        font-size: 20px;
    }
    .ca-elem-signs {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 15px 0;
    }
    .ca-elem-desc {
        padding-left: 0;
    }
}