/* Variables de couleurs */
:root {
    --primary-color: #333;
    --bg-light: #f8f9fa;
    --border-color: #eee;
    --text-muted: #888;
}

body {
    background-color: var(--bg-light);
    color: #333;
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-custom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header */
.main-header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
}

.logout {
    color: #d93025;
    font-weight: 500;
}

/* Main Content */
.content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center;     /* Centrage vertical */
    padding: 40px 20px;
}

.intro-home {
    max-width: 800px;        /* Empêche le texte d'être trop large sur grand écran */
    width: 100%;
    text-align: center;      /* Centre le texte et les boutons à l'intérieur */
    background: #ffffff;     /* Optionnel : fond blanc pour détacher le bloc */
    padding: 50px;
    border-radius: 15px;
    /* On peut ajouter une ombre légère pour le style */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Ajustement pour les titres dans l'intro */
.intro-home h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-home p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    padding: 2rem 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}
