/* === Page d'accueil === */
.home-container {
    height: calc(100vh - 160px);

    /* Fond neutre derrière le blur */
    background: #E8E9EB;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Panneau flou type macOS Sonoma */
.home-panel {
    padding: 60px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(280%);

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #1F2937;
}

.home-title {
    color: #111827 !important; /* gris anthracite Apple */
}

.home-subtitle {
    color: #374151 !important; /* gris moyen Apple */
}

body {
    padding-bottom: 80px;
}

footer {
    z-index: 1030;
}
