/* style/promotions.css */
.page-promotions {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #111111; /* Card BG */
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-promotions__section-description {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-promotions__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-promotions__promo-card img {
  width: 100%;
  height: 250px; /* Fixed height for visual consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #FFE080 0%, #E6B122 100%);
}

.page-promotions__loyalty-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-item img {
  width: 200px;
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-promotions__feature-title {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-promotions__feature-text {
  font-size: 0.9rem;
  color: #FFF6D6;
}

.page-promotions__app-download {
  background-color: #0A0A0A; /* Background */
}

.page-promotions__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__app-content img {
  width: 400px;
  height: 300px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__app-text {
  text-align: left;
  max-width: 500px;
}

.page-promotions__app-text p {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #FFF6D6;
}

.page-promotions__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__secondary-button:hover {
  background-color: #F2C14E;
  color: #111111;
}

.page-promotions__how-to-claim {
  background-color: #111111; /* Card BG */
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.page-promotions__step-item {
  background-color: #0A0A0A; /* Background */
  border-left: 5px solid #F2C14E; /* Main color */
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-promotions__step-text a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-promotions__step-text a:hover {
  color: #FFD36B;
}

.page-promotions__faq {
  background-color: #0A0A0A; /* Background */
}

.page-promotions__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
  text-align: left;
}

.page-promotions__faq-question {
  font-size: 1.15rem;
  color: #F2C14E;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 0.95rem;
  color: #FFF6D6;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-promotions__section-description {
    margin-bottom: 30px;
  }

  .page-promotions__cards-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__loyalty-features {
    grid-template-columns: 1fr;
  }

  .page-promotions__app-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-promotions__app-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .page-promotions__app-text {
    text-align: center;
  }

  .page-promotions__secondary-button {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions__claim-steps {
    gap: 20px;
  }

  .page-promotions__step-item {
    padding: 15px 20px;
  }

  .page-promotions__step-title {
    font-size: 1.1rem;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
  }

  /* Ensure images in content area do not overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}