/* style.css */

/* --- Variables et Reset --- */
:root {
    --bg-color: #f4f7f6;
    --text-color: #333;
    --primary-color: #007bff;
    --card-bg: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* --- Conteneur principal --- */
.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* --- Header --- */
header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 2em;
}

/* --- Contenu principal --- */
.card {
    background-color: var(--card-bg);
    padding: 2em;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2em;
}

.card h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    display: inline-block;
    max-width: 400px;
}

.next-steps h3 {
    margin-bottom: 0.5em;
    font-weight: 600;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.next-steps ul li:hover {
    transform: translateX(5px);
}

.next-steps code {
    background-color: #d1d1d1;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

/* --- Footer --- */
footer {
    margin-top: 3em;
    font-size: 0.9rem;
    color: #888;
}

/* --- Responsive Design --- */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .card {
        padding: 1.5em;
    }
}
