/* Base */
body {
  margin: 0;
  padding: 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Header */
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;
}

/* Progress bar */
#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;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  color: #b5e853;
  position: relative;
  margin-bottom: 2rem;
}

.section-title::after {
  content: "";
  display: block;
  margin: 0.5rem auto 0;
  height: 4px;
  width: 80px;
  background-color: #ffcc00;
  border-radius: 2px;
}

/* Production Items */
.production-item {
  margin-bottom: 3rem;
  text-align: center;
}

.prod-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
  image-rendering: auto;
}

/* Description */
.prod-description {
  background-color: rgba(0, 0, 0, 0.6); /* fond sombre translucide */
  padding: 1rem;
  margin: 1rem auto 0 auto;
  max-width: 900px;
  border-radius: 10px;
}

.prod-description h3 {
  color: #ffcc00;
  margin-top: 0;
}

.prod-description p {
  color: #f0f0f0;
  line-height: 1.5;
}

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