/* style/promo.css */

/* Base styles for the promo page content */
.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Primary gold color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
}

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

.page-promo__section-intro a {
  color: #1E90FF; /* Auxiliary blue for links */
  text-decoration: none;
}

.page-promo__section-intro a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #0A0A0A;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Ensure image fits well */
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
  min-width: 100%;
  min-height: 100%;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  max-width: 900px;
}

.page-promo__hero-title {
  font-size: 4.5em;
  color: #FFD700; /* Primary gold color */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Action red color */
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(220, 20, 60, 0.4);
}

.page-promo__cta-button:hover {
  background-color: #ff3366;
  transform: translateY(-3px) scale(1.02);
}

.page-promo__cta-button--center {
  display: block;
  margin: 40px auto;
  max-width: 300px;
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-description a {
  color: #1E90FF;
  text-decoration: none;
}

.page-promo__card-description a:hover {
  text-decoration: underline;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary blue color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #007bff;
  transform: translateY(-2px);
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 80px 0;
  margin-top: 80px;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #FFD700;
}

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A0A0A;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promo__step-description {
  font-size: 1em;
  color: #cccccc;
}

.page-promo__step-description a {
  color: #1E90FF;
  text-decoration: none;
}

.page-promo__step-description a:hover {
  text-decoration: underline;
}

/* VIP Section */
.page-promo__vip-section {
  padding: 80px 0;
  margin-top: 80px;
}

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

.page-promo__vip-image {
  flex: 1 1 45%;
  min-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border: 3px solid #1E90FF;
}

.page-promo__vip-text {
  flex: 1 1 45%;
  min-width: 350px;
}

.page-promo__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-promo__text-block a {
  color: #FFD700;
  text-decoration: none;
}

.page-promo__text-block a:hover {
  text-decoration: underline;
}

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

.page-promo__vip-benefit-item {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #ffffff;
}

/* FAQ Section */
.page-promo__faq-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 80px 0;
  margin-top: 80px;
}

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

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #cccccc;
}

.page-promo__faq-answer a {
  color: #1E90FF;
  text-decoration: none;
}

.page-promo__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-promo__final-cta-section {
  padding: 80px 0;
  text-align: center;
  margin-top: 80px;
}

.page-promo__final-cta-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-promo__final-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3;
  border-radius: 20px;
}

.page-promo__final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-promo__final-cta-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-promo__final-cta-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-promo__final-cta-description a {
  color: #1E90FF;
  text-decoration: none;
}

.page-promo__final-cta-description a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .page-promo__hero-title {
    font-size: 3.8em;
  }
  .page-promo__final-cta-title {
    font-size: 3em;
  }
}

@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__vip-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__vip-image {
    min-width: unset;
    width: 80%;
  }
  .page-promo__vip-text {
    min-width: unset;
    width: 100%;
  }
  .page-promo__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-section {
    min-height: 450px;
  }
  .page-promo__hero-content {
    padding: 30px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-promo__promotions-grid, .page-promo__claim-steps, .page-promo__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card, .page-promo__step-item, .page-promo__faq-item {
    padding: 20px;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__final-cta-container {
    padding: 30px;
  }
  .page-promo__final-cta-title {
    font-size: 2em;
  }
  .page-promo__final-cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  /* Mobile content image scaling */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__final-cta-title {
    font-size: 1.8em;
  }
}