/* Palette inspirée de pelmel.org : Blanc cassé, Gris anthracite, Bleu discret */
:root {
    --bg-color: #fdfdfd;
    --text-color: #2c3e50;
    --accent-color: #3498db;
    --secondary-color: #7f8c8d;
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

header {
    margin-bottom: 2rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bio {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.links a:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Animation douce à l'ouverture */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .links ul { flex-direction: column; gap: 10px; }
}