/* style/promotions-vip-program.css */

/* Base styles and body text color for dark background */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: var(--dark-bg); /* Inherited from shared.css */
}

.page-promotions-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Adjust as needed */
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
  color: #ffffff;
  background-color: #300060; /* Brand primary color for hero */
}

.page-promotions-vip-program__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-vip-program__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
}

.page-promotions-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-promotions-vip-program__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-vip-program__btn-primary,
.page-promotions-vip-program__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-program__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #300060; /* Dark purple text */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program__btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

.page-promotions-vip-program__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program__btn-secondary:hover {
  background-color: #FFD700;
  color: #300060;
}

.page-promotions-vip-program__btn-large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* General Section Styles */
.page-promotions-vip-program__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-vip-program__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Slightly off-white for readability on dark background */
}

.page-promotions-vip-program__introduction-section,
.page-promotions-vip-program__benefits-section,
.page-promotions-vip-program__faq-section {
  background-color: var(--dark-bg); /* Dark background */
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions-vip-program__dark-bg {
  background-color: #300060;
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions-vip-program__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* VIP Tiers Section */
.page-promotions-vip-program__tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-program__tier-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
}

.page-promotions-vip-program__tier-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-vip-program__tier-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for tier titles */
  margin-bottom: 15px;
}

.page-promotions-vip-program__tier-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-promotions-vip-program__tier-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promotions-vip-program__tier-benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
}

/* Benefits Section */
.page-promotions-vip-program__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-program__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-promotions-vip-program__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-program__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

/* How to Join Section */
.page-promotions-vip-program__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-program__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-vip-program__step-icon {
  background-color: #FFD700;
  color: #300060;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promotions-vip-program__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-program__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-promotions-vip-program__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-promotions-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-promotions-vip-program__faq-title {
  font-size: 1.2em;
  color: #FFD700;
  margin: 0;
}

.page-promotions-vip-program__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__faq-item.active .page-promotions-vip-program__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-vip-program__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
  text-align: justify;
}

.page-promotions-vip-program__faq-item.active .page-promotions-vip-program__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

/* CTA Section */
.page-promotions-vip-program__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #300060; /* Brand primary color */
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-vip-program__hero-title {
    font-size: 3em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions-vip-program__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-vip-program__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-vip-program__btn-primary,
  .page-promotions-vip-program__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto; /* Center buttons */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-vip-program__btn-large {
    padding: 15px 30px !important;
    font-size: 1.1em !important;
  }

  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-vip-program__text-block {
    font-size: 1em;
  }

  .page-promotions-vip-program__tier-grid,
  .page-promotions-vip-program__benefit-grid,
  .page-promotions-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__container {
    padding: 20px 15px;
  }

  /* Image responsive */
  .page-promotions-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-vip-program__section,
  .page-promotions-vip-program__card,
  .page-promotions-vip-program__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-vip-program__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-promotions-vip-program__faq-question {
    padding: 15px 20px;
  }

  .page-promotions-vip-program__faq-answer {
    padding: 0 20px;
  }

  .page-promotions-vip-program__faq-item.active .page-promotions-vip-program__faq-answer {
    padding: 10px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2em;
  }

  .page-promotions-vip-program__hero-description {
    font-size: 1em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 1.5em;
  }
}