body {
  margin: 0;
   background: #000;
  font-family: Arial, sans-serif;
  color: #e8e3d9;
  display: flex;
  justify-content: center;
  

}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('img/500-100-7-monochrome.png');
  background-size: 300px; /* important */
  opacity: 0.4;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: overlay;
}
.page {
  max-width: 500px;
  width: 100%;
  background: #070707;
  min-height: 100vh;
    box-shadow:
    0 10px 20px rgba(255, 255, 255, 0.651),
    0 0 0 1px rgba(255, 255, 255, 0.863);
}

/* BANNIERE */
.banner {
  width: 100%;
  height: 180px;
  background: url('img/background.jpg') center/cover no-repeat;
  position: relative;
}

/* LOGO */
.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #c9b37e;
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* CONTENU */
.content {
  padding: 70px 20px 30px;
  text-align: center;
}

h1 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
}

/* CTA */
.cta {
  display: block;
  border: 1px solid #ffffff;
  padding: 14px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: 0.3s;
  z-index: 0;
}

.cta:hover::before {
  left: 0;
}

.cta:hover {
  color: #000;
}

.cta span {
  position: relative;
  z-index: 1;
}

.cta:hover {
  background: #ffffff;
  color: #000;
}

/* LIENS */
.link {
  display: block;
  border: 1px solid #444;
  padding: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #ffffff;
}

.link:hover {
  border-color: #ffffff;
}

/* PRODUITS */
.products {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.product {
  flex: 1;
  text-align: center;
}

.product img {
  width: 100%;
  border: 1px solid #333;
}

.product-title {
  font-size: 12px;
  margin: 8px 0;
}

.product a {
  font-size: 11px;
  text-decoration: none;
  color: #ffffff;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 40px;
}
/* GRID */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* TUILE */
.product {
  background: #111;
  border: 1px solid #222;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* HOVER */
.product:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* IMAGE */
.product-img {
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.1);
}

/* CONTENU */
.product-content {
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

/* TITRE */
.product-title {
  font-size: 13px;
}

/* SOUS TEXTE */
.product-sub {
  font-size: 11px;
  color: #aaa;
}

/* BOUTON */
.product-btn {
  margin-top: auto;
  border: 1px solid #ffffff;
  padding: 10px;
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER BOUTON */
.product-btn:hover {
  background: #ffffff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .products {
    grid-template-columns: 1fr;
  }
}
/* RESPONSIVE */
@media (max-width: 500px) {

  .products {
    flex-direction: column;
  }

  .product {
    margin-bottom: 20px;
  }
.product-img img {
  width: 50%;
  object-fit: cover;
}
.product-btn {
 width: 50%;
 align-self: center;
}
  .banner {
    height: 140px;
  }

  .logo {
    width: 90px;
    height: 90px;
    bottom: -45px;
  }

}