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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for hero section */
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-promotions__hero-content {
  max-width: 900px;
  width: 100%;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 15px 30px;
  border-radius: 8px;
  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(255, 211, 107, 0.4);
  min-width: 200px; /* Button min width */
  min-height: 48px; /* Button min height */
  line-height: 1;
}

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

.page-promotions__cta-button--secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: none;
  margin-left: 15px;
}

.page-promotions__cta-button--secondary:hover {
  background: #FFD36B;
  color: #111111;
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-promotions__section {
  padding: 80px 20px;
  background-color: #0A0A0A;
  border-top: 1px solid #3A2A12;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-promotions__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-promotions__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions__text-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-promotions__text-content a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__text-content a:hover {
  color: #F2C14E;
}

.page-promotions__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.2);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-promotions__claim-steps {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-promotions__claim-steps li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
  color: #FFF6D6;
}

.page-promotions__claim-steps strong {
  color: #F2C14E;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-promotions__faq-item:hover {
  background-color: #1a1a1a;
  border-color: #F2C14E;
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #FFD36B;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #F2C14E;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  display: none;
  padding-top: 10px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  display: block;
}

.page-promotions__faq-image {
  margin-top: 60px;
}

.page-promotions__final-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background: #0A0A0A;
}

.page-promotions__final-cta-content {
  max-width: 900px;
}

.page-promotions__final-cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__content-wrapper {
    flex-direction: column;
  }
  .page-promotions__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-promotions__text-content, .page-promotions__image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-promotions__hero-image {
    margin-bottom: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section, .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__hero-description, .page-promotions__text-content p, .page-promotions__final-cta-description {
    font-size: 0.95rem;
  }
  .page-promotions__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-promotions__final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-promotions__cta-button--secondary {
    margin-left: 0;
  }
  .page-promotions__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min image size is maintained */
    min-height: 200px;
  }
  /* Mobile content area images must be responsive */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
}