:root {
  --rouge: #b22222;
  --vert: #9acd32;
  --beige: #fff8e7;
  --blanc: #ffffff;
  --gris: #2c2c2c;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--beige);
  text-align: center;
  overflow-x: hidden;
}

.KINGGGGGG {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.image-parallax-bk {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  z-index: -2;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.block {
  z-index: 10;
  height: 100vh;
  z-index: 9;
}

.contenu-superpose {
  position: absolute;
  margin-left: 15%;
  z-index: 10;
  width: 35%;
  color: rgb(255, 255, 255);
  text-align: left;
  padding-top: 200px;
}

.box {
  display: flex;
  gap: 10%;
  margin-left: 10%;
  margin-top: 30px;
}

.call-to-action {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--vert);
  color: white;
  border-radius: 25px;
  transition: background 0.3s;
}

.call-to-action:hover {
  background: var(--rouge);
}

.normal {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border-radius: 25px;
  transition: background 0.3s;
}

.filtres {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
}

.filtres button,
.filtres select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--gris);
  cursor: pointer;
}

.section-produits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.produit {
  background-color: var(--blanc);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 220px;
  text-align: center;
  padding-bottom: 10px;
  transition: transform 0.2s ease;
}

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

.produit img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.produit h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.produit .prix {
  font-weight: bold;
  color: var(--rouge);
}

.produit button {
  margin: 5px;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  color: var(--blanc);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.produit button:hover {
  transform: scale(1.05);
}

.bouton-tester {
  background-color: var(--vert);
}

.bouton-HT {
  background-color: var(--rouge);
}

.notification {
  position: fixed;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.notification.show {
  bottom: 40px;
  opacity: 1;
}


/* ============================== */
/* FOOTER / PIED DE PAGE */
/* ============================== */
.pied-page {
    background-color: var(--gris);
    color: var(--beige);
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 60px 10px 0 10px; 
    box-shadow: var(--shadow);
    text-align: left;
}

.pied-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-align: left;
}

.pied-page h2 span {
    color: var(--rouge);
    text-align: left;
}

.conteneur-pied {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-pied {
    flex: 1 1 250px;
}

.contact-pied p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: var(--beige);
}

.contact-pied .material-symbols-outlined {
    color: var(--rouge);
    font-size: 22px;
    margin-right: 10px;
}

.liens-pied {
    display: flex;
    flex: 2 1 500px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.liens-pied ul {
    list-style: none;
    padding: 0;
}

.liens-pied li {
    margin: 8px 0;
}

.liens-pied a {
    color: var(--beige);
    text-decoration: none;
    transition: 0.3s;
}

.liens-pied a:hover {
    color: var(--vert);
}

.carte-pied iframe {
    border: 0;
    width: 500px;
    height: 220px;
    border-radius: 8px;
}

.bas-pied {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--beige);
}

.bas-pied span {
    color: var(--rouge);
    font-weight: 600;
}


h2 {
    font-size: 2.5em;
    color: #b22222;
    /* Exemple de couleur foncée */
    margin-bottom: 5px;
}

@media (max-width: 768px) {
  .produit {
    width: 45%;
  }
  .contenu-superpose {
    width: 80%;
    margin-left: 10%;
  }
}

@media (max-width: 480px) {
  .produit {
    width: 90%;
  }
}

@media (max-width: 750px) {
    .carte-pied iframe {
        width: 100%;
        height: 200px;
    }
}