/* Shared components: buttons, cards, promos, about, contact pieces, promos image */

.buy-now-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 40px;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Satoshi";
  font-weight: 900;
  transition: 0.3s;
}
.buy-now-btn:hover { background: black; color: white; }

.section-text {
  font-family: "Satoshi", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 6% 10%;
}
@media (max-width: 768px) {
  .section-text { font-size: 1.2rem; padding: 8% 5%; }
}

/* Image gallery */
.image-gallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.image-gallery div { flex: 1; }
.section-img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .image-gallery { flex-direction: column; } }

/* Promotions / promo image */
.promo-image-wrapper {
  width: 100%;
  height: 800px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 80px;
}
.promo-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("../promotion1.png");
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: 0;
}
.promo-image {
  width: 70%;
  max-width: 800px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .promo-image-wrapper { height: 400px; margin-top: 80px; }
  .promo-image { width: 85%; }
}

/* About / Contact shared basics */
.about-us, .promotions, .contact-us {
  background-color: white;
  padding: 60px 20px;
}