/* roboto-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v49-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v49-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ===== Section Contact ===== */
.contact-section {
  max-width: 700px;
  margin: 50px auto;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.6rem;
  color: var(--blue);
}

/* Formulaire */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,119,255,0.2);
}

.contact-section textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-section button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: var(--blue);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-end;
}

.contact-section button:hover {
  background-color: #005fcc;
}

/* ==== H1 style ==== */
h1 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px auto;
  padding: 15px 20px;
  border: 1px solid var(--darkblue);
  border-radius: 10px;
  opacity: 0.95;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  width: 90%;
  max-width: 1200px;
  transition: all 0.3s ease;
}

h1:hover {
  opacity: 1;
}

.blue {
  color: #00008B;
}

.orange {
  color: #ff6600;
}

.subtitle {
  color: #555555;   /* Gris clair pour le texte descriptif */
  font-weight: 400; /* Moins gras pour ne pas concurrencer le titre */
  font-size: 0.9rem; /* Taille plus petite que le titre */
}

/* ===== Responsivité Mobile ===== */
@media (max-width: 480px) {
  .contact-section button {
    align-self: stretch;
  }
}