/* -------- STYLE GLOBAL -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  scroll-behavior: smooth;
}

/* -------- HEADER -------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: 60px;
}


/* -------- HERO SECTION -------- */
#hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/07.jpg") center/cover;
  height: 50vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
}
#hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(181, 23, 158, 0.8),
               0 0 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}



/* -------- Gammes -------- */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  color: #9B59B6;
  margin-bottom: 40px;
  font-size: 2em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* SECTION CONTACT */
#contact {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  color: #9B59B6;
  margin-bottom: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 2rem;
  color: #380837;
  margin-bottom: 10px;
}


.contact-item h3 {
  color: #9e387e;
  margin-bottom: 5px;
}

.contact-item p {
  color: #333;
  font-size: 1rem;
}


/* -------- FOOTER -------- */
footer {
  background: #541061;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

  #hero h2 {
    font-size: 1.8em;
  }
}
/* -------- GALERIE DE PRODUITS -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery img:hover {
  height: 300px; /* agrandit le cadre au survol */
  object-fit: contain; /* montre toute l’image */
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}




