/* static-page.css */

body {
    background-color: #000;
    color: #fff;
}

.static-container {
    max-width: 800px;
    margin: 120px auto 60px auto;
    padding: 20px 40px;
    background-color: #1a202c;
    border-radius: 12px;
    color: #cbd5e0;
}

.static-container h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 1px solid #4a5568;
    padding-bottom: 16px;
}

.static-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5em;
}

.contact-email {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}
.contact-email:hover {
    text-decoration: underline;
}

/* Formulaire de contact */
.contact-form {
    margin-top: 40px;
    border-top: 1px solid #4a5568;
    padding-top: 30px;
}

.contact-form h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #a0aec0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #4a5568;
    background-color: #2d3748;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.5);
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background-color: #e53e3e;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #c53030;
}

@media (max-width: 768px) {
    .static-container {
        margin-top: 90px;
        padding: 20px;
    }
    .static-container h1 {
        font-size: 2rem;
    }
}
