/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #1a1a1a; /* Slightly lighter for contrast sections */
  color: #f0f0f0;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 400px; /* Ensure image is not too small */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: 200px; /* Space for image above */
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  padding: 30px;
  border-radius: 10px;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-promotions__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promotions__text-block {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Buttons */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background-color: #1e87b9;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Overview Section */
.page-promotions__overview-section {
  padding: 80px 0;
}

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

.page-promotions__promo-card {
  background-color: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-promotions__card-button {
  margin: 0 15px;
  width: calc(100% - 30px); /* Adjust for padding */
}

/* Specific Promos Section */
.page-promotions__specific-promos {
  padding: 80px 0;
}

.page-promotions__promo-category {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-promotions__category-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions__category-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__feature-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__feature-list li {
  background-color: rgba(38, 169, 224, 0.1);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #26A9E0;
  border-radius: 4px;
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promotions__feature-list li strong {
  color: #26A9E0;
}

/* How To Claim Section */
.page-promotions__how-to-claim {
  padding: 80px 0;
}

.page-promotions__steps-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-top: 30px;
}

.page-promotions__steps-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promotions__steps-list li strong {
  color: #26A9E0;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  padding: 80px 0;
}

.page-promotions__info-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 30px;
}

.page-promotions__info-list li {
  font-size: 1em;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promotions__info-list li strong {
  color: #26A9E0;
}

/* Why Choose Section */
.page-promotions__why-choose {
  padding: 80px 0;
}

.page-promotions__benefits-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-promotions__benefits-list li {
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-size: 1em;
  color: #f0f0f0;
  border-left: 5px solid #26A9E0;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
}

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

.page-promotions__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #0a0a0a;
  border-bottom: 1px solid rgba(38, 169, 224, 0.2);
}

.page-promotions__faq-question::-webkit-details-marker, /* Hide default marker for Chrome */
.page-promotions__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 15px 20px 20px 20px;
  font-size: 0.95em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* CTA Bottom Section */
.page-promotions__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: 150px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__hero-section {
    padding: 10px 0 40px 0 !important;
  }

  .page-promotions__hero-image {
    min-height: 300px;
  }

  .page-promotions__hero-content {
    margin-top: 100px;
    padding: 20px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promotions__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-promotions__text-block, .page-promotions__steps-list li, .page-promotions__info-list li, .page-promotions__benefits-list li, .page-promotions__card-description, .page-promotions__category-description, .page-promotions__feature-list li, .page-promotions__faq-answer {
    font-size: 0.95em !important;
    line-height: 1.6 !important;
  }

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-promotions__button-group {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__promo-card,
  .page-promotions__promo-category,
  .page-promotions__how-to-claim,
  .page-promotions__terms-conditions,
  .page-promotions__why-choose,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__category-title {
    font-size: 1.5em;
  }

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

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: 80px;
    padding: 15px;
  }

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

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

  .page-promotions__hero-image {
    min-height: 250px;
  }
}