/* Full-page background */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-image: url('../assets/promote.jpeg'); /* swap with preferred image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #342E1D;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Main content wrapper */
.promote-wrapper {
  background-color: rgba(255, 255, 240, 0.7);
  backdrop-filter: blur(1.5px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Headline */
.promote-wrapper h1 {
  font-size: 2.8rem;
  color: #A40865; /* Beet purple */
  margin-bottom: 20px;
}

/* Intro Paragraph */
.promote-wrapper p {
  font-size: 1.2rem;
  color: #3A1900;
  margin-bottom: 30px;
}

/* Call-to-action button */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(to right, #FFA500, #E45811); /* Carrot to chili */
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Steps Section */
.promote-steps h2 {
  font-size: 1.5rem;
  color: #E45811;
  margin: 40px 0 20px;
}

.promote-steps ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.promote-steps li {
  background: #A0D468; /* Avocado green */
  color: white;
  margin: 10px 0;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Back to Home Button */
.back-buttons {
  margin-top: 40px;
}

.back-buttons a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #A40865, #E45811);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.back-buttons a:hover {
  transform: scale(1.05);
}
