/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 1;
}

header, .cta, .promotions, .testimonials, footer {
  position: relative;
  z-index: 2; /* Ensure text is above the overlay */
}

header {
  padding: 20px;
}

.logo img {
  width: 150px;
}

h1 {
  font-size: 2.5rem;
  margin: 10px 0;
}

p {
  font-size: 1.2rem;
}

.cta {
  margin: 40px 0;
  padding: 20px;
}

button {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  position: relative; /* Ensure button is above the overlay */
  z-index: 3; /* Higher z-index than overlay */
}

button:hover {
  background-color: #e6b800;
}

.features {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
}

.feature {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  width: 30%;
}

.feature img {
  width: 80px;
  margin-bottom: 10px;
}

.promotions, .testimonials {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
}

.promotions h2, .testimonials h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.promotions ul {
  list-style-type: disc;
  padding-right: 20px;
}

.promotions li {
  font-size: 1.1rem;
  margin: 10px 0;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
}

.testimonial p {
  font-size: 1.1rem;
  margin: 5px 0;
}

footer {
  padding: 10px;
  text-align: center;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}