/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Promo Section with Parallax */
.promo-section {
  position: relative;
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") no-repeat center center / cover;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}

/* Overlay gradient */
.promo-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}

/* Text Content */
.promo-content {
  max-width: 600px;
  text-align: left;
}

.promo-content h2 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.promo-content h2 span {
  color: #eb5e28; /* Highlight discount */
}

.promo-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f5f5f5;
}

/* Button */
.promo-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #fff;
  color: #252422;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.promo-btn:hover {
  background: #eb5e28;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .promo-content h2 {
    font-size: 36px;
  }
  .promo-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .promo-section {
    justify-content: center;
    background-attachment: scroll; /* Disable parallax on mobile */
  }
  .promo-content {
    text-align: center;
  }
}
