/* style/promotions-limited-time-events.css */

.page-promotions-limited-time-events {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

.page-promotions-limited-time-events__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promotions-limited-time-events__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promotions-limited-time-events__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold accent */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-events__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-limited-time-events__hero-image-wrapper {
  max-width: 100%;
  margin-top: 30px;
  z-index: 0;
}

.page-promotions-limited-time-events__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-events__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-limited-time-events__cta-button:hover {
  background-color: #e6b800; /* Darker gold */
  transform: translateY(-3px);
}

.page-promotions-limited-time-events__cta-button--secondary {
  background-color: #003366; /* Dark blue */
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
  margin-left: 15px;
}

.page-promotions-limited-time-events__cta-button--secondary:hover {
  background-color: #001a33; /* Darker blue */
  border-color: #e6b800;
}

.page-promotions-limited-time-events__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-promotions-limited-time-events__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions-limited-time-events__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions-limited-time-events__section-subtitle {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-limited-time-events__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions-limited-time-events__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-promotions-limited-time-events__content-text {
  flex: 1;
}

.page-promotions-limited-time-events__content-text p {
  margin-bottom: 15px;
  color: #444;
}

.page-promotions-limited-time-events__content-image {
  flex: 1;
  text-align: center;
}

.page-promotions-limited-time-events__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-limited-time-events__sub-title {
  font-size: 1.6em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-limited-time-events__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-limited-time-events__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555;
}

.page-promotions-limited-time-events__list li::before {
  content: '✔';
  color: #FFCC00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-limited-time-events__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-limited-time-events__advantage-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-events__advantage-item:hover {
  transform: translateY(-5px);
}

.page-promotions-limited-time-events__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-limited-time-events__advantage-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions-limited-time-events__advantage-item p {
  color: #666;
}

.page-promotions-limited-time-events__final-cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #003366;
  color: #fff;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-events__final-cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-limited-time-events__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .page-promotions-limited-time-events__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-limited-time-events__section-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-events__final-cta-title {
    font-size: 2.2em;
  }
  .page-promotions-limited-time-events__content-grid {
    flex-direction: column;
  }
  .page-promotions-limited-time-events__content-grid--reverse {
    flex-direction: column;
  }
  .page-promotions-limited-time-events__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-events__hero {
    padding: 60px 15px;
  }
  .page-promotions-limited-time-events__hero-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-events__hero-description {
    font-size: 1em;
  }
  .page-promotions-limited-time-events__section {
    padding: 40px 15px;
  }
  .page-promotions-limited-time-events__section-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-events__sub-title {
    font-size: 1.4em;
  }
  .page-promotions-limited-time-events__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-limited-time-events__final-cta {
    padding: 40px 15px;
  }
  .page-promotions-limited-time-events__final-cta-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-events__final-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-events__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-events__section-title {
    font-size: 1.6em;
  }
  .page-promotions-limited-time-events__final-cta-title {
    font-size: 1.6em;
  }
  .page-promotions-limited-time-events__cta-button {
    width: 100%;
    margin-top: 10px;
  }
  .page-promotions-limited-time-events__cta-button--secondary {
    margin-left: 0;
  }
  .page-promotions-limited-time-events__advantages-grid {
    grid-template-columns: 1fr;
  }
}