* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #111;
  color: white;
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg, #ffffff, #ececec);
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: flex-start; /* 👈 met en haut */
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 25px;
  font-size: 18px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  text-align: center;
}

.section p {
  max-width: 800px;
  margin: 0 auto 15px;
  text-align: center;
  color: #555;
}

.produits-section {
  background: #fff;
}

.carte-produit {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.carte-produit:hover {
  transform: translateY(-5px);
}

.carte-produit {
  background: #fdfdfd;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  text-align: center;
}

.carte-produit img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  object-position: center 50%
}

.carte-produit h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.prix {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #b8860b;
  margin: 10px 0 15px;
}

.carte-produit button {
  background: #111;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-section {
  background: #f1f1f1;
}

.contact-form {
  max-width: 700px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  background: #111;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.hero-full {
  height: 90vh;
  background: url("image/IMG_1974.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content-center {
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content-center h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-content-center p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-content-center .btn {
  background: white;
  color: black;
}

.hero-content-center .btn:hover {
  background: #d4af37;
  color: black;

}.infos-footer {
  background: #111; /* couleur comme ton image */
  padding: 60px 20px;
  color: white;
}

.infos-grid {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.infos-footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.infos-footer p {
  margin-bottom: 8px;
  font-size: 15px;

}.galerie-cachee {
  display: none;
  margin-top: 40px;
  text-align: center;
}

.galerie-cachee h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #111;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images par ligne */
  gap: 25px;
}

.galerie-grid img {
  width: 100%;
  height: 420px; /* plus grand */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.infos-pratiques {
  padding: 70px 20px;
  background: #f5f5f5;
  text-align: center;
}

.infos-pratiques h3 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #111;
}

.infos-pratiques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.info-card {
  background: white;
  border-radius: 18px;
  padding: 30px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #111;
}

.info-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

.info-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.info-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px; /* centre l'image */
}
.logos-transporteurs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  align-items: flex-start;
}

.transporteur-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transporteur-item img {
  object-fit: contain;
}

.transporteur-item span {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

/* Réglages perso logos */
.logo-chrono {
  width: 50px;
}

.logo-colissimo {
  width: 62px;
  margin-left: -7px;
}

.logo-dpd {
  width: 44px;
  margin-left: 3px;
}

.galerie-cachee {
  display: none;
  margin-top: 40px;
  text-align: center;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.galerie-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-title {
  text-align: center;
}

.ligne-haut {
  display: block;
  position: relative;
  top: -40px; /* 👈 monte le texte */
  margin-bottom: 20px;
}

.ligne-bas {
  display: block;
  text-align: center;
  font-size: 52px; /* 👈 plus gros */
  position: relative;
  top: -50px; /* 👈 monte légèrement */
  font-weight: bold;
}
.reseaux-sociaux {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 12px;
}

.reseaux-sociaux h3 {
  margin-bottom: 15px;
}

.icons-reseaux {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icons-reseaux a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}
.icons-reseaux img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.icons-reseaux a:hover {
  background: #111;
  color: white;
}
.icons-reseaux a {
  display: flex;
  flex-direction: column; /* logo au-dessus */
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
  }

  .logo {
    font-size: 24px;
  }

  .hero-full {
    height: auto;
    min-height: 100vh;
    background-position: center;
  }

  .overlay {
    padding: 120px 20px 40px; /* descend le contenu */
  }

  .hero-content-center {
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-title {
    text-align: center;
  }

  .ligne-haut {
    font-size: 24px;
    top: -40px;
    margin-bottom: 10px;
  }

  .ligne-bas {
    font-size: 30px;
    top: 0;
    font-weight: bold;
  }

  .hero-content-center p {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.5;
  }

  .btn {
  display: inline-block;
  padding: 14px 28px;
  background: white;
  color: #111;
  text-decoration: none;
  border-radius: 30px; /* arrondi moderne */
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
}

/* effet au survol */
.btn:hover {
  background: #111;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

  .produits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carte-produit img {
    height: 220px;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .galerie-grid img {
    height: auto;
  }


  .infos-pratiques-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.info-card {
  width: calc(100% - 30px);
  max-width: 420px;
  padding: 22px 18px;
  border-radius: 14px;
}

  .icons-reseaux {
    flex-direction: column;
    align-items: center;
  }

  .icons-reseaux a {
    width: 180px;
  }

  .infos-grid {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }
  
  .carte-produit,
.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carte-produit:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.carte-produit {
  overflow: hidden;
}

.carte-produit img {
  transition: transform 0.4s ease;
}

.carte-produit:hover img {
  transform: scale(1.04);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}