:root {
    --light-orange: #fcd0a1ff;
    --sage: #b1b695ff;
    --rose-quartz: #aea4bfff;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    background: var(--sage);
    color: #222;
}
header {
    background: var(--rose-quartz);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
nav {
    background: var(--light-orange);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #222;
    text-decoration: none;
    padding: 14px 10px;
    display: block;
    font-weight: bold;
}
nav ul li a:hover {
    background: var(--rose-quartz);
    color: #fff;
    border-radius: 4px;
}
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 10px;
}
section {
    margin-bottom: 40px;
}
h1, h2, h3 {
    font-family: 'Roboto', Arial, sans-serif;
}
h2 {
    color: var(--rose-quartz);
    margin-bottom: 20px;
}
.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project {
    background: var(--light-orange);
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.service {
    background: var(--sage);
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.project, .service {
    image-rendering: pixelated; /* petit clin d’œil rétro */
    border: 2px solid #222;     /* bordure style "pixel art" */
}

.project h3, .service h3 {
    font-family: monospace;     /* titre avec une vibe rétro */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project, .service {
    transition: transform 0.2s, box-shadow 0.2s;
}
.project:hover, .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.contact-links {
    margin: 15px 0;
}
.contact-links a {
    margin-right: 15px;
    color: var(--rose-quartz);
    text-decoration: none;
    font-weight: bold;
}
.contact-links a:hover {
    text-decoration: underline;
}
form {
    margin-top: 20px;
}

form label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

form input, 
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background: var(--rose-quartz);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #8e7ca5; /* une version un peu plus foncée */
}

footer {
    background: var(--rose-quartz);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.95em;
}
@media (max-width: 600px) {
    .projects, .services { flex-direction: column; }
}