/* =========================================
   ACCUEIL : DESIGN FINAL ÉPURÉ
   ========================================= */

.home-wrapper {
    position: relative; width: 100%; height: 100%;
    background-color: #050505;
    overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 60px;
}

/* --- 0. FOND SIMPLE LUMIÈRE --- */
.simple-light-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 40%, #151515 0%, #000000 70%);
    pointer-events: none;
}

/* --- 1. BLOC EN-TÊTE --- */
.home-header-content {
    text-align: center; z-index: 10; position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.brand-title {
    font-size: 52px; color: #fff; font-weight: 800; letter-spacing: 4px; margin: 0;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.brand-tagline {
    color: #666; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin: 15px 0 35px 0; font-weight: 600;
}

/* --- 2. ACTIONS (STATUS & BOUTONS) --- */
.home-actions-wrapper {
    display: flex; flex-direction: column; align-items: center;
    gap: 25px; margin-top: 10px;
}

.status-indicator {
    display: flex; 
    align-items: center; 
    gap: 8px;
    font-size: 10px; 
    font-weight: 600; 
    letter-spacing: 3px; 
    text-transform: uppercase;
    color: #555; 
    background: rgba(13, 13, 13, 0.02);
    padding: 6px 15px; 
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    width: 6px; 
    height: 6px; 
    background-color: #2ecc71; 
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71; 
    animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 4px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.action-buttons-row {
    display: flex; gap: 20px; align-items: center; justify-content: center;
}

.btn-exec {
    background: transparent; padding: 14px 28px; border-radius: 2px;
    font-size: 11px; font-weight: 750; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gold {
    border: 1px solid #f1b52c; color: #f1b52c;
    box-shadow: 0 0 15px rgba(241, 181, 44, 0.1);
}
.btn-gold:hover {
    background: #f1b52c; color: #000;
    box-shadow: 0 0 30px rgba(241, 181, 44, 0.4); transform: translateY(-2px);
}

.btn-white {
    border: 1px solid #287233; color: #287233;
    box-shadow: 0 0 15px rgba(64, 241, 44, 0.1);
}
.btn-white:hover {
    background: #287233; color: #000;
    box-shadow: 0 0 30px rgba(57, 241, 44, 0.4); transform: translateY(-2px);
}

@media (max-width: 600px) {
    .action-buttons-row { flex-direction: column; gap: 15px; }
    .btn-exec { width: 100%; }
}

/* --- 3. SECTION CARTES --- */
.home-cards-section {
    width: 100%; max-width: 1300px; padding: 0 30px;
    display: flex; flex-direction: column; align-items: center; z-index: 10;
}

.home-cards-grid {
    display: flex; gap: 25px; width: 100%; height: 320px; perspective: 1000px;
}

.home-card {
    flex: 1; position: relative; background: #0a0a0a; overflow: hidden;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.1); outline: 1px solid transparent; outline-offset: -5px;
    animation: fadeInUp 0.8s ease-out backwards;
}
.home-card:nth-child(1) { animation-delay: 0.1s; }
.home-card:nth-child(2) { animation-delay: 0.2s; }
.home-card:nth-child(3) { animation-delay: 0.3s; }

.card-slider-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 10s ease, background-image 1s ease-in-out;
    opacity: 0.6; 
}

.card-internal-frame {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 5; background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
}

.card-top-bar {
    position: absolute; top: 20px; left: 0; width: 100%;
    font-size: 9px; color: #666; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
    text-align: center; pointer-events: none;
}

.card-center-text { text-align: center; margin: 0; padding: 0; }

.home-card h2 {
    color: #fff; font-size: 26px; font-weight: 900; letter-spacing: 3px; margin: 0;
    text-transform: uppercase; text-shadow: 0 5px 20px rgba(0,0,0,1); transition: color 0.3s;
}
.card-sep-line {
    width: 40px; height: 2px; background: #f1b52c; margin: 15px auto;
    transform: scaleX(0.5); transition: transform 0.4s; opacity: 0.7;
}
.home-card p {
    color: #aaa; font-size: 11px; letter-spacing: 3px; margin: 0; 
    text-transform: uppercase; font-weight: 600; transition: color 0.3s;
}

.home-card:hover {
    border-color: #f1b52c; outline-color: rgba(241, 181, 44, 0.3);
    transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.home-card:hover .card-slider-bg { opacity: 1; transform: scale(1.1); }
.home-card:hover h2 { color: #f1b52c; }
.home-card:hover p { color: #fff; }
.home-card:hover .card-sep-line { transform: scaleX(1); opacity: 1; }


/* --- 4. FOOTER HOME (REVENU AU STYLE SIMPLE) --- */
.home-bottom-bar {
    position: absolute; 
    bottom: 30px; 
    left: 40px; 
    right: 40px;
    z-index: 20;
    
    /* Layout Simple : Gauche / Droite */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    
    /* Pas de bordure, pas de fond, juste le texte */
    background: transparent;
    pointer-events: none; /* Laisse passer les clics si nécessaire */
}

/* Texte */
.bottom-left, .footer-right-container {
    color: #444; /* Gris foncé discret comme ton image */
    font-size: 10px; 
    font-weight: 700; 
    letter-spacing: 2px; 
    text-transform: uppercase;
}

.taiko-gold { color: #f1b52c; margin-left: 3px; }

@media (max-width: 768px) {
    .home-bottom-bar { padding: 0 20px; flex-direction: column; align-items: center; gap: 10px; }
}