/**
 * CHARTE GRAPHIQUE UNIFIÉE - VERSION V6 (DÉFINITIVE)
 * Fusion : Styles Généraux + Spirale 9 Slots
 */

:root {
    /* Couleurs de base du site */
    --gm-blue: #428e9b;
    --gm-orange: #e58338;
    --gm-white: #ffffff;
    --gm-bg: #f4f7f9;
    --gm-shadow: 0 4px 12px rgba(0,0,0,0.08);

    /* Palette des 9 Slots (Vifs) */
    --clr-slot-1: #007bff; /* Bleu Électrique (Centre) */
    --clr-slot-2: #ff8800; /* Orange Saturé */
    --clr-slot-3: #2ecc71; /* Vert Émeraude */
    --clr-slot-4: #9b59b6; /* Violet Vif */
    --clr-slot-5: #ff0000; /* Rouge Pur */
    --clr-slot-6: #1abc9c; /* Turquoise Vif */
    --clr-slot-7: #f1c40f; /* Jaune Vif */
    --clr-slot-8: #e91e63; /* Magenta Vif */
    --clr-slot-9: #34495e; /* Bleu Ardoise */
}

/* --- STRUCTURE GÉNÉRALE --- */
.gm-header-action {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 20px 0;
    width: 100%;
}

.gm-menu-title { 
    color: var(--gm-blue) !important; 
    font-size: 28px; 
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.btn-retour-unifie {
    background-color: var(--gm-blue) !important;
    color: var(--gm-white) !important;
    position: absolute;
    right: 20px; 
    padding: 6px 15px; 
    font-size: 11px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-retour-unifie:hover { background-color: var(--gm-orange) !important; }

/* --- CONTENEUR SPIRALE --- */
.gm-star-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 650px; 
    background: var(--gm-bg);
    border-radius: 15px;
    margin: 20px auto;
    overflow: hidden;
}

/* --- STYLE DES BOUTONS (SLOTS) --- */
.gm-item-star {
    position: absolute !important;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 115px;
    text-decoration: none;
    box-shadow: var(--gm-shadow);
    color: #334e68 !important;
    transition: all 0.2s ease;
    box-sizing: border-box;
    border-bottom: 6px solid #ccc; /* Bordure par défaut */
}

.gm-item-star:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.gm-item-star i { font-size: 38px !important; margin-bottom: 10px; }
.gm-item-star span { font-size: 12px; font-weight: bold; text-align: center; text-transform: uppercase; line-height: 1.2; padding: 0 5px; }

/* --- POSITIONS SPIRALE (3x3) --- */
.pos-9 { top: 10%;  left: 10%; }
.pos-2 { top: 5%;   left: calc(50% - 95px); }
.pos-3 { top: 10%;  right: 10%; }
.pos-8 { top: 42%;  left: 5%; }
.pos-1 { top: 42%;  left: calc(50% - 95px); } /* CENTRE */
.pos-4 { top: 42%;  right: 5%; }
.pos-7 { bottom: 10%; left: 10%; }
.pos-6 { bottom: 5%;  left: calc(50% - 95px); }
.pos-5 { bottom: 10%; right: 10%; }

/* --- LOGIQUE DES COULEURS (AUTOMATIQUE) --- */
[class*="-1"] { border-bottom-color: var(--clr-slot-1) !important; }
[class*="-2"] { border-bottom-color: var(--clr-slot-2) !important; }
[class*="-3"] { border-bottom-color: var(--clr-slot-3) !important; }
[class*="-4"] { border-bottom-color: var(--clr-slot-4) !important; }
[class*="-5"] { border-bottom-color: var(--clr-slot-5) !important; }
[class*="-6"] { border-bottom-color: var(--clr-slot-6) !important; }
[class*="-7"] { border-bottom-color: var(--clr-slot-7) !important; }
[class*="-8"] { border-bottom-color: var(--clr-slot-8) !important; }
[class*="-9"] { border-bottom-color: var(--clr-slot-9) !important; }