/* style/index-promotion-highlights.css */

.page-index-promotion-highlights {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main background color */
}

.page-index-promotion-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-promotion-highlights__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-promotion-highlights__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-promotion-highlights__hero-description {
  font-size: 1.2em;
  color: #F0F0F0; /* Slightly lighter text for description */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-promotion-highlights__hero-image-wrapper {
  margin-top: 40px;
}

.page-index-promotion-highlights__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-promotion-highlights__section {
  padding: 60px 0;
  background-color: #282F3C; /* Slightly lighter dark background for sections */
  color: #E0E0E0;
}

.page-index-promotion-highlights__section--dark {
  background-color: #1A202C;
}

.page-index-promotion-highlights__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-index-promotion-highlights__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-promotion-highlights__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-promotion-highlights__promo-card {
  background-color: #1A202C;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-promotion-highlights__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-index-promotion-highlights__promo-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.page-index-promotion-highlights__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-promotion-highlights__promo-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-promotion-highlights__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-index-promotion-highlights__list li {
  background-color: #282F3C;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  color: #F0F0F0;
}

.page-index-promotion-highlights__list li strong {
  color: #FFD700;
}

.page-index-promotion-highlights__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: auto; /* Push button to bottom of card */
}

.page-index-promotion-highlights__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text on gold */
}

.page-index-promotion-highlights__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-index-promotion-highlights__button--secondary {
  background-color: #3a475a; /* Dark blue-gray */
  color: #FFD700; /* Gold text on dark background */
  border: 1px solid #FFD700;
}

.page-index-promotion-highlights__button--secondary:hover {
  background-color: #4a5a6d;
  transform: translateY(-2px);
}

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

.page-index-promotion-highlights__step-card {
  background-color: #282F3C;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-promotion-highlights__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-promotion-highlights__step-text {
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-index-promotion-highlights__text {
  font-size: 1.1em;
  color: #F0F0F0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-index-promotion-highlights__cta {
  padding: 80px 0;
  text-align: center;
}

.page-index-promotion-highlights__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-promotion-highlights__cta-text {
  font-size: 1.3em;
  color: #F0F0F0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-promotion-highlights__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-promotion-highlights__cta-image-wrapper {
  margin-top: 50px;
}

.page-index-promotion-highlights__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-promotion-highlights__hero-title {
    font-size: 2.5em;
  }

  .page-index-promotion-highlights__section-title {
    font-size: 2em;
  }

  .page-index-promotion-highlights__promo-card {
    padding: 20px;
  }

  .page-index-promotion-highlights__promo-title {
    font-size: 1.4em;
  }

  .page-index-promotion-highlights__cta-title {
    font-size: 2.2em;
  }

  .page-index-promotion-highlights__cta-text {
    font-size: 1.1em;
  }

  .page-index-promotion-highlights__button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-index-promotion-highlights__promo-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-index-promotion-highlights__hero-title {
    font-size: 2em;
  }

  .page-index-promotion-highlights__section-title {
    font-size: 1.8em;
  }

  .page-index-promotion-highlights__promo-grid,
  .page-index-promotion-highlights__steps {
    grid-template-columns: 1fr;
  }

  .page-index-promotion-highlights__cta-title {
    font-size: 1.8em;
  }

  .page-index-promotion-highlights__cta-text {
    font-size: 1em;
  }

  .page-index-promotion-highlights__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}