/* style/promotions.css */
.page-promotions {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for visual spacing */
  background-color: #f0f0f0;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-promotions__hero-content {
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: bold;
  color: #8B0000;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions__cta-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-3px);
  border-color: #8B0000;
}

.page-promotions__overview-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  color: #8B0000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1rem;
  color: #555555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-promotions__grid-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-promotions__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #8B0000;
  margin: 20px 15px 10px 15px;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #666666;
  padding: 0 15px 20px 15px;
  line-height: 1.5;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  border: 1px solid #FFD700;
}

.page-promotions__card-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-promotions__how-to-claim-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.page-promotions__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.page-promotions__step-card {
  flex: 1 1 280px;
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-promotions__step-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-promotions__step-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  border: 1px solid #8B0000;
}

.page-promotions__step-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.page-promotions__cta-bottom-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #8B0000;
  color: #ffffff;
}

.page-promotions__cta-bottom-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__cta-bottom-section .page-promotions__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-promotions__cta-button--large:hover {
  background-color: #ffffff;
  color: #8B0000;
  border-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: 2rem;
  }

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

  .page-promotions__section-title {
    font-size: 1.8rem;
  }

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

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

  .page-promotions__steps-container {
    flex-direction: column;
  }

  .page-promotions__step-card {
    flex: none;
    width: 100%;
  }
  
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.75rem;
  }

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

  .page-promotions__section-title {
    font-size: 1.5rem;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

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

  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}