/* Variables globales */
:root {
  --bg: #f9fafb;
  --fg: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #2563eb;
  --danger: #ef4444;
  --success: #10b981;
}

/* Reset de base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* Conteneur principal */
.container {
  max-width: 760px;
  margin: 40px auto;
  padding: 0 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .03);
}

/* Typographie */
h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

p.lead {
  margin: 0 0 24px;
  color: var(--muted);
}

/* Formulaire CF7 */
.wpcf7-form p {
  margin: 0 0 14px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  font: inherit;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}

.wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7-submit {
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--success);
  background: #ecfdf5;
  color: #065f46;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: var(--danger);
  background: #fef2f2;
  color: #991b1b;
}

/* Footer */
.footer {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}
.logos {
    background: blue;
    padding:10px;
}

.logos {
  display: flex;
  justify-content: center; 
  gap: 30px; 
  margin-top: 20px;
}

.logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 640px) {
  .header {
    position: static;
  }
}

.header {
	background: #1f23fa;
}

label {
    font-weight: bold;   /* Le texte du label est très gras */
}

input {
    font-weight: normal !important;
}

.wpcf7-list-item-label {
    font-weight: normal;
}

form {
    margin-top:30px !important;
}

input.wpcf7-form-control.wpcf7-submit:not([disabled]) {
    border: 2px solid #303030;
    color: #f7f3f3;
    background: #1f23fa;
    cursor: pointer;
}

/* Effet hover */
input.wpcf7-form-control.wpcf7-submit:not([disabled]):hover {
    background: #1518b8;  
    border-color: #000;
    color: #ffffff;
}


.asterix {
  color: red; 
  font-weight: bold; 
  margin-left: 3px; 
}
