body {
    font-family: 'Inter', sans-serif;
    background-color: #fdf9f7; /* Beige très clair */
    color: #5d5d5d;
    line-height: 1.7;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* En-tête */
header {
    background: linear-gradient(135deg, #ffeaf2 0%, #ffeef5 100%);
    padding: 50px 30px;
    text-align: center;
    color: #d81b60; /* Rose élégant */
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-bottom: 8px;
    color: #c2185b;
}

.subtitle {
    font-size: 1.3em;
    font-weight: 500;
    color: #ec407a;
    margin-bottom: 10px;
}

.description {
    font-size: 1.05em;
    color: #ad1457;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Navigation */
nav {
    background: #fdf9f7;
    padding: 18px 0;
    text-align: center;
    border-bottom: 1px solid #f5e1e8;
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #ec407a;
    font-weight: 500;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ad1457;
}

/* Sections */
.section {
    padding: 35px 40px;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #c2185b;
    font-size: 1.8em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ec407a;
    border-radius: 2px;
}

/* Listes */
.list, .skills-list, .interests {
    list-style: none;
}

.list li, .skills-list li, .interests li {
    padding: 12px 0;
    border-bottom: 1px dashed #f5e1e8;
    font-size: 1.02em;
}

.list li:last-child, .skills-list li:last-child, .interests li:last-child {
    border-bottom: none;
}

.skills-list li {
    font-weight: 500;
    color: #ad1457;
}

.interests li {
    display: inline-block;
    background: #fff0f5;
    color: #c2185b;
    padding: 8px 16px;
    margin: 6px 8px 6px 0;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 500;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 15px;
}

.contact-item {
    background: #fdf9f7;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #f5e1e8;
    font-size: 1em;
}

.contact-item strong {
    color: #ec407a;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.domains {
    margin-top: 15px;
    font-style: italic;
    color: #ad1457;
}

/* Formulaire */
.form-section {
    background: #fdf9f7;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #f5e1e8;
}

.form-section h2 {
    margin-bottom: 25px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #f5e1e8;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    background: white;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ec407a;
    box-shadow: 0 0 0 3px rgba(236, 64, 122, 0.15);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

button {
    background: #ec407a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #ad1457;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 18px;
    font-size: 0.9em;
    color: #999;
}

.form-note a {
    color: #ec407a;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background: #fdf9f7;
    color: #ad1457;
    font-size: 0.9em;
    margin-top: 30px;
    border-top: 1px solid #f5e1e8;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        padding: 40px 20px;
    }
    header h1 {
        font-size: 2.3em;
    }
    .section, .form-section {
        padding: 30px 25px;
    }
    nav a {
        margin: 0 12px;
        font-size: 1em;
    }
}