/* Fond général */
body {
  margin: 0;
  padding: 0;
  background-image: url('img/fond.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Header fixé en haut */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #4CAF50;
  color: white;
  z-index: 1000;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Barre de progression */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #ffcc00;
  width: 0%;
  z-index: 2000;
}

/* Main */
main {
  padding-top: 150px;
  padding-left: 1rem;
  padding-right: 1rem;
  min-height: 80vh;
}

/* Section de contact */
.contact-section {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 28px;
  color: #ffcc00;
  text-shadow: 1px 1px 4px black;
}

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #ffcc00;
}

.contact-form button {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e6b800;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
