/* style/promotions.css */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css */
}

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promotions__dark-bg {
  background-color: #017439;
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions__why-choose-section {
  padding: 80px 0;
}

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

.page-promotions__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #FFFF00; /* Custom color for registration/login fonts */
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  color: #f0f0f0;
}

.page-promotions__featured-promotions-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

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

.page-promotions__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #FFFF00; /* Custom color for registration/login fonts */
  margin-bottom: 15px;
}

.page-promotions__card-text {
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Custom color for registration/login buttons */
  color: #FFFF00; /* Custom color for registration/login fonts */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__btn-primary:hover {
  background-color: #a00606;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #017439;
}

.page-promotions__vip-program-section {
  padding: 80px 0;
}

.page-promotions__vip-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-promotions__vip-text {
  flex: 1;
}

.page-promotions__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions__vip-benefits-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFFF00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.93"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-promotions__vip-benefit-highlight {
  color: #FFFF00; /* Custom color for registration/login fonts */
}

.page-promotions__vip-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-promotions__steps-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  counter-increment: step-counter;
  position: relative;
  padding-left: 80px;
}

.page-promotions__steps-list li::before {
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  font-weight: bold;
  color: #C30808; /* Custom color for registration/login buttons */
  opacity: 0.7;
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #FFFF00; /* Custom color for registration/login fonts */
  margin-bottom: 10px;
}

.page-promotions__step-text {
  color: #f0f0f0;
}

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

.page-promotions__terms-conditions-section {
  padding: 80px 0;
}

.page-promotions__terms-list {
  list-style: disc;
  color: #f0f0f0;
  max-width: 800px;
  margin: 50px auto;
  padding-left: 40px;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__faq-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.page-promotions__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFFF00; /* Custom color for registration/login fonts */
}

.page-promotions__faq-answer {
  padding: 15px 25px 25px 25px;
  color: #f0f0f0;
  font-size: 1em;
  line-height: 1.6;
}

.page-promotions__cta-section {
  padding: 80px 0;
  background-color: #017439;
  text-align: center;
}

.page-promotions__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__vip-content {
    flex-direction: column;
  }
  .page-promotions__vip-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__container,
  .page-promotions__why-choose-section,
  .page-promotions__featured-promotions-section,
  .page-promotions__vip-program-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__vip-image {
    max-width: 100%;
  }
  .page-promotions__steps-list li {
    padding-left: 60px;
  }
  .page-promotions__steps-list li::before {
    font-size: 2em;
    left: 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__feature-title,
  .page-promotions__card-title,
  .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 10px 20px 20px 20px;
  }
  .page-promotions__cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__section-description {
    font-size: 0.9em;
  }
  .page-promotions__feature-title,
  .page-promotions__card-title,
  .page-promotions__step-title {
    font-size: 1.2em;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}