/* dashboard/static/dashboard/css/home.css */

/* 1. Image de fond globale */
body.home-body {
    /* Image d'ambiance "Tech/Espace" par défaut, modifiable */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Navbar Transparente */
.navbar-home {
    background: rgba(0, 0, 0, 0.2); /* Fond très léger */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3. Section Héro (Centrale) */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;

    /* CORRECTION DEMANDÉE : Texte Blanc éclatant */
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* Ombre portée pour lisibilité max */
}

/* 4. Panneau de verre (Glassmorphism) */
.glass-panel {
    background: rgba(255, 255, 255, 0.1); /* Blanc très transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5); /* Ombre forte pour détacher du fond */
    max-width: 900px;
    width: 100%;
}

/* 5. Typographie et Icônes */
.display-title {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9; /* Légère transparence pour le style */
}

/* Icônes dans les colonnes du bas */
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .glass-panel {
        padding: 2rem;
    }
    .display-title {
        font-size: 2.5rem;
    }
}