/* ==========================================================================
   ACCUEIL.CSS — Styles pour la page d'accueil
   Page : accueil.php
   ========================================================================== */

:root {
    --primary-color: #4a6fdc;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f7ff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.welcome-container {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(74, 111, 220, 0.1);
    width: 90%;
    max-width: 800px;
    padding: 40px;
    text-align: center;
    margin: 20px;
}

.logo-container {
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.app-meta-home {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.25;
    display: block;
}

.logo {
    max-width: 300px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

p {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn-access {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-access:hover {
    background-color: #3a5dba;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 111, 220, 0.3);
}

footer {
    margin-top: 40px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .welcome-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .logo {
        max-width: 200px;
    }
}
