/* style/promotions-holiday-specials.css */
.page-promotions-holiday-specials {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #1A1A2E; /* Primary dark background */
}

.page-promotions-holiday-specials a {
  color: #E0B95B; /* Auxiliary color for links */
  text-decoration: none;
}

.page-promotions-holiday-specials a:hover {
  text-decoration: underline;
  color: #f0d070;
}

/* Hero Section */
.page-promotions-holiday-specials__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%); /* Gradient background for depth */
  text-align: center;
  gap: 30px;
}

.page-promotions-holiday-specials__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions-holiday-specials__hero-title {
  font-size: 3.5em;
  color: #E0B95B; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-holiday-specials__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions-holiday-specials__cta-button {
  display: inline-block;
  background-color: #E0B95B; /* Auxiliary color for CTA button */
  color: #1A1A2E; /* Primary color for button text */
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-specials__cta-button:hover {
  background-color: #f0d070;
  transform: translateY(-3px);
  color: #000000;
  text-decoration: none;
}

.page-promotions-holiday-specials__hero-image-container {
  max-width: 600px;
  margin-top: 40px;
}

.page-promotions-holiday-specials__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-promotions-holiday-specials__section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-holiday-specials__section-title {
  font-size: 2.8em;
  color: #E0B95B; /* Auxiliary color for section titles */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-holiday-specials__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B95B;
  border-radius: 2px;
}

.page-promotions-holiday-specials__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Promotions Grid */
.page-promotions-holiday-specials__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-holiday-specials__promo-card {
  background-color: #2A2A4A; /* Slightly lighter dark background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-holiday-specials__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-holiday-specials__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  filter: brightness(0.9);
}

.page-promotions-holiday-specials__promo-title {
  font-size: 1.8em;
  color: #E0B95B;
  margin-bottom: 15px;
}

.page-promotions-holiday-specials__promo-text {
  font-size: 1em;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-holiday-specials__promo-button {
  display: inline-block;
  background-color: #E0B95B;
  color: #1A1A2E;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-promotions-holiday-specials__promo-button:hover {
  background-color: #f0d070;
  transform: translateY(-2px);
  color: #000000;
  text-decoration: none;
}

/* How To Claim Section */
.page-promotions-holiday-specials__how-to-claim {
  background-color: #1A1A2E;
}

.page-promotions-holiday-specials__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-holiday-specials__step-card {
  background-color: #2A2A4A;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-holiday-specials__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(30%) saturate(800%) hue-rotate(0deg) brightness(110%) contrast(100%); /* Gold effect */
}

.page-promotions-holiday-specials__step-title {
  font-size: 1.6em;
  color: #E0B95B;
  margin-bottom: 15px;
}

.page-promotions-holiday-specials__step-text {
  font-size: 0.95em;
  color: #b0b0b0;
  line-height: 1.6;
}

.page-promotions-holiday-specials__step-text a {
  color: #E0B95B;
  font-weight: bold;
}

/* Terms & Conditions */
.page-promotions-holiday-specials__terms-conditions {
  background-color: #2A2A4A; /* Slightly lighter dark background */
}

.page-promotions-holiday-specials__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 30px auto;
  max-width: 700px;
  text-align: left;
}

.page-promotions-holiday-specials__terms-list li {
  background-color: #3A3A5A; /* Even lighter dark background */
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.6;
  position: relative;
  padding-left: 40px;
}

.page-promotions-holiday-specials__terms-list li::before {
  content: '✔️';
  position: absolute;
  left: 15px;
  color: #E0B95B;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions-holiday-specials__terms-note {
  font-size: 1em;
  color: #ccc;
  font-style: italic;
  margin-top: 30px;
}

/* Why Lucky8 Section */
.page-promotions-holiday-specials__why-lucky8 {
  background-color: #1A1A2E;
}

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

.page-promotions-holiday-specials__why-item {
  background-color: #2A2A4A;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-promotions-holiday-specials__why-item-title {
  font-size: 1.8em;
  color: #E0B95B;
  margin-bottom: 15px;
}

.page-promotions-holiday-specials__why-item-text {
  font-size: 1em;
  color: #b0b0b0;
  line-height: 1.6;
}

/* Final CTA Section */
.page-promotions-holiday-specials__cta-final {
  background: linear-gradient(90deg, #1A1A2E 0%, #E0B95B 100%);
  padding: 80px 20px;
}

.page-promotions-holiday-specials__cta-final .page-promotions-holiday-specials__section-title {
  color: #1A1A2E;
}

.page-promotions-holiday-specials__cta-final .page-promotions-holiday-specials__section-title::after {
  background-color: #1A1A2E;
}

.page-promotions-holiday-specials__cta-final .page-promotions-holiday-specials__section-intro {
  color: #1A1A2E;
  font-weight: 600;
}

.page-promotions-holiday-specials__cta-final .page-promotions-holiday-specials__section-intro a {
  color: #1A1A2E;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-holiday-specials__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
  background-color: #1A1A2E;
  color: #E0B95B;
  border: 2px solid #E0B95B;
}

.page-promotions-holiday-specials__cta-button--large:hover {
  background-color: #000000;
  border-color: #f0d070;
  color: #f0d070;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-holiday-specials__hero {
    padding: 60px 15px;
  }

  .page-promotions-holiday-specials__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-holiday-specials__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-holiday-specials__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-promotions-holiday-specials__section-title {
    font-size: 2em;
  }

  .page-promotions-holiday-specials__promo-card {
    padding: 20px;
  }

  .page-promotions-holiday-specials__promo-title {
    font-size: 1.5em;
  }

  .page-promotions-holiday-specials__step-icon {
    width: 60px;
    height: 60px;
  }

  .page-promotions-holiday-specials__step-title {
    font-size: 1.4em;
  }

  .page-promotions-holiday-specials__cta-button--large {
    font-size: 1.2em;
    padding: 15px 40px;
  }
}

@media (max-width: 480px) {
  .page-promotions-holiday-specials__hero {
    padding: 40px 10px;
  }

  .page-promotions-holiday-specials__hero-title {
    font-size: 2em;
  }

  .page-promotions-holiday-specials__hero-description {
    font-size: 1em;
  }

  .page-promotions-holiday-specials__section-title {
    font-size: 1.8em;
  }

  .page-promotions-holiday-specials__section-intro {
    font-size: 0.95em;
  }

  .page-promotions-holiday-specials__promo-grid,
  .page-promotions-holiday-specials__steps-container,
  .page-promotions-holiday-specials__why-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-holiday-specials__promo-card,
  .page-promotions-holiday-specials__step-card,
  .page-promotions-holiday-specials__why-item {
    padding: 20px;
  }

  .page-promotions-holiday-specials__terms-list li {
    padding: 12px 20px 12px 35px;
    font-size: 0.9em;
  }

  .page-promotions-holiday-specials__terms-list li::before {
    left: 10px;
    font-size: 1em;
  }

  .page-promotions-holiday-specials__cta-button--large {
    font-size: 1em;
    padding: 12px 30px;
  }
}