/* Réinitialisation des styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styles généraux */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #1a1a1a; /* Nouvelle couleur de fond */
  color: #eee; /* Nouvelle couleur de texte */
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #222; /* Nouvelle couleur de fond */
  padding: 20px 0;
  text-align: center;
}

header h1 {
  color: #ff7f00; /* Nouvelle couleur du titre */
  font-size: 3em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: #eee;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff4500; /* Nouvelle couleur au survol */
}

main {
  padding: 20px 0;
}

.hero {
  background-image: url('images/image 1.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ff4500;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #cc3700;
}

.products {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  background-color: #333; /* Nouvelle couleur de fond */
  text-align: left;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.5em;
  color: #eee;
}

h3 {
  font-size: 2em;
  color: #ff7f00; /* Nouvelle couleur */
}

.price {
  font-weight: bold;
  color: #ff7f00; /* Nouvelle couleur */
}

button {
  padding: 12px 30px;
  background-color: #ff4500;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #cc3700;
}

footer {
  background-color: #222; /* Nouvelle couleur de fond */
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
  color: #eee;
  font-size: 1.2em;
}

footer ul {
  list-style-type: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
  font-size: 1.2em;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 30%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}
#carousel-container {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Ombre légère autour du carousel */
}

#carousel {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease; /* Transition fluide au survol */
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.7;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #ff8c00;
  transform: scale(1.5);
}
