body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0c0a;
    color: #f5e6c8;
}

.menu {
    display: flex;
    gap: 20px;
    background: #1a1510;
    padding: 15px;
    border-bottom: 2px solid #8b6f3d;
}

.menu a {
    color: #d6a84f;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    color: #fff;
}

.container {
    padding: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.form-card {
    min-height: 110px;
    background: #1f1a14;
    border: 1px solid #8b6f3d;
    border-radius: 12px;
    color: #f5e6c8;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: bold;
    transition: 0.25s;
}

.form-card:hover {
    border-color: #d6a84f;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(214, 168, 79, 0.35);
}

@media (max-width: 1000px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== FORMULAIRE TDD ===== */

.tdd-form {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: linear-gradient(145deg, #1a1510, #120f0c);
    border: 1px solid #8b6f3d;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Titres */
h1 {
    text-align: center;
    color: #e6c36a;
    margin-bottom: 10px;
}

/* Labels */
.tdd-form label {
    font-weight: bold;
    color: #d6a84f;
    font-size: 14px;
    margin-bottom: 4px;
}

/* Champs */
.tdd-form input,
.tdd-form select,
.tdd-form textarea {
    background: #0f0c0a;
    border: 1px solid #5c4a2b;
    color: #f5e6c8;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Focus */
.tdd-form input:focus,
.tdd-form select:focus,
.tdd-form textarea:focus {
    outline: none;
    border-color: #d6a84f;
    box-shadow: 0 0 8px rgba(214,168,79,0.4);
}

/* Textarea */
.tdd-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Bouton */
.tdd-form button {
    margin-top: 15px;
    background: linear-gradient(135deg, #8b6f3d, #d6a84f);
    color: #0f0c0a;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover bouton */
.tdd-form button:hover {
    background: linear-gradient(135deg, #d6a84f, #f0d28a);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(214,168,79,0.6);
}

/* Effet clic */
.tdd-form button:active {
    transform: scale(0.98);
}

/* Select custom arrow */
.tdd-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23d6a84f' height='20' viewBox='0 0 20 20' width='20'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .tdd-form {
        padding: 20px;
    }
}
