/*
Theme Name: Starter Theme
Description: Thème de démarrage minimal généré automatiquement à l'installation (fonctionnalités WordPress de base, page de contact incluse). À personnaliser pour le projet.
Author: Infomaniak WP Deploy Tool
Version: 1.0.0
Text Domain: starter-theme
*/

body {
    font-family: system-ui, sans-serif;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    color: #1e293b;
}

header.site-header,
footer.site-footer {
    margin-bottom: 2rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.contact-form p {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
}

.contact-form button {
    padding: 0.5rem 1.5rem;
    cursor: pointer;
}

.contact-form-success {
    padding: 1rem;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 4px;
}

.contact-form-error {
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: 4px;
}

