/* assets/css/style.css */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-style: italic;
}

/* Illustration sous le titre */
.header-illustration {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
}

.header-illustration img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

nav {
    background: linear-gradient(to right, #74b9ff, #6c5ce7);
    padding: 15px 0;
    border-radius: 6px;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
input[type="datetime-local"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #b8d8d8;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

textarea {
    height: 140px;
    resize: vertical;
}

button {
    background: linear-gradient(to right, #74b9ff, #6c5ce7);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(to right, #6c5ce7, #74b9ff);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin-top: 30px;
    text-align: center;
    color: #555;
    font-style: italic;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #74b9ff;
}

.recaptcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.link-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #74b9ff;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
}

.link-card h3 {
    margin-top: 0;
    color: #2c3e50;
}

.link-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.link-card a:hover {
    text-decoration: underline;
}

/* Styles spécifiques pour les illustrations */
.illustration-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

.illustration-note p {
    margin: 5px 0;
}
