/* Smooth scroll et global */
html {
  scroll-behavior: smooth;
  font-family: Verdana, sans-serif;
  background-color: #7A7A7A;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 13px;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* Supprimer tout le gras par défaut */
b, strong { font-weight: normal; }

/* En-tête */
header {
  background-image: url('images/banniere-fond.jpg');
  text-align: center;
  padding: 15px 10px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: normal;
}

/* Menu horizontal */
.menu-horizontal {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(to bottom, #aaa, #555);
}

.menu-horizontal li { margin: 0 12px; }

.menu-horizontal li a {
  color: #fff;
  font-size: 12pt;
  text-decoration: none;
  padding: 4px 10px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: normal;
}

.menu-horizontal li a:hover {
  color: #000;
  background-color: #FFC972;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255,200,114,0.7);
}

.menu-horizontal li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #fff;
  margin-left: 12px;
  vertical-align: middle
}

@media (max-width: 600px){
  .menu-horizontal { flex-wrap: wrap; justify-content: space-around; }
  .menu-horizontal li { margin: 5px 0; }
  .menu-horizontal li a { padding: 4px 6px; font-size: 11pt; }
  .menu-horizontal li:not(:last-child)::after { display: none; }
}

/* Sections */
section {
  background: #fff;
  color: #000;
  max-width: 700px;
  margin: 20px auto;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: normal;
}

.center { text-align: center; }

.img-center {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  height: auto;
}

.justify { text-align: justify; }

/* Liens orange foncé */
section a, ul li a { color: #D23913; text-decoration: none; font-weight: normal; }
section a:hover, ul li a:hover { text-decoration: underline; }

/* Titres */
section h2 { font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: normal; }
section h3 { font-size: 1.2rem; margin-bottom: 0.4rem; font-weight: normal; }
section h4 { font-size: 1rem; margin-bottom: 0.3rem; font-weight: normal; }

/* Galerie musiciens */
.musiciens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.musiciens img {
  max-width: 160px;
  height: auto;
  border-radius: 4px;
}

/* Contact rapide */
.contact-rapide { text-align: center; background: #555; color: #fff; padding: 8px; }
.contact-rapide a { color: #FFC702; text-decoration: none; font-weight: normal; }

/* Footer */
footer { text-align: center; background: #333; color: #fff; padding: 10px; }
footer a { color: #FFC702; text-decoration: none; font-weight: normal; }
footer a:hover { text-decoration: underline; }

/* Listes */
ul { padding-left: 20px; font-size: 1rem; font-weight: normal; }

/* Responsive */
@media(max-width:768px){ section { margin: 10px; padding: 10px 12px; } .musiciens img{ max-width:45%; } }
@media(max-width:480px){ .musiciens img{ max-width:90%; } }

/* Reset léger */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1f2937, #111827);
  margin: 0;
  color: #333;
}

/* Section centrée */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

/* Carte du formulaire */
form {
  background: #ffffff;
  padding: 18px;
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.6s ease-in-out;
}

/* Titre */
#contact h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #111827;
}

/* Labels */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Champs */
input, textarea {
  width: 98%;
  padding: 10px;
  margin-top: 2px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

/* Focus */
input:focus, textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
}

/* Bouton */
button {
  width: 36%;
  padding: 8px;
  border: none;
  border-radius: 10px;
  background: #9b2ba1;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover bouton */
button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.row {
  display: flex;
  gap: 30px;
}

.row label {
  flex: 1;
}

/* Message statut */
#my-form-status {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: white;
  transition: 0.3s;
}

select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
}