/* style/vip-club-benefits.css */
.page-vip-club-benefits {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-vip-club-benefits__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #000000; /* Dark background for hero text contrast */
}

.page-vip-club-benefits__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.page-vip-club-benefits__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim image for text readability */
  z-index: 0;
}

.page-vip-club-benefits__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
}

.page-vip-club-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FCBC45; /* Login button color for highlight */
}

.page-vip-club-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-vip-club-benefits__hero-button,
.page-vip-club-benefits__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club-benefits__hero-button:hover,
.page-vip-club-benefits__cta-button:hover {
  background-color: #FFD700; /* Slightly lighter gold on hover */
  transform: translateY(-3px);
}

.page-vip-club-benefits__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club-benefits__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-vip-club-benefits__overview-section,
.page-vip-club-benefits__tiers-section,
.page-vip-club-benefits__join-section,
.page-vip-club-benefits__faq-section,
.page-vip-club-benefits__final-cta-section {
  padding: 80px 0;
}

.page-vip-club-benefits__overview-section {
  background-color: #f8f8f8;
}

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

.page-vip-club-benefits__benefit-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-benefits__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-benefits__benefit-icon {
  width: 250px; /* Enforce min 200px */
  height: 187px; /* Enforce min 200px, maintain aspect ratio */
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-vip-club-benefits__benefit-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-benefits__benefit-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-vip-club-benefits__tiers-section {
  background-color: #FFFFFF;
}

.page-vip-club-benefits__tiers-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-benefits__tier-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-benefits__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.page-vip-club-benefits__tier-title {
  font-size: 2em;
  color: #FCBC45; /* Login button color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club-benefits__tier-image {
  width: 100%;
  height: 200px; /* Enforce min 200px */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-vip-club-benefits__tier-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-vip-club-benefits__tier-features li {
  margin-bottom: 10px;
  font-size: 1.05em;
  display: flex;
  align-items: center;
}

.page-vip-club-benefits__tier-features li::before {
  content: '✔';
  color: #FCBC45;
  margin-right: 10px;
  font-weight: bold;
}

.page-vip-club-benefits__tiers-footer-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 50px auto 0 auto;
  color: #555555;
}

.page-vip-club-benefits__join-section {
  background-color: #f8f8f8;
}

.page-vip-club-benefits__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-benefits__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-benefits__step-number {
  font-size: 3em;
  color: #FCBC45;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-vip-club-benefits__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-vip-club-benefits__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-vip-club-benefits__faq-section {
  background-color: #FFFFFF;
}

.page-vip-club-benefits__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-benefits__faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.page-vip-club-benefits__faq-question {
  font-size: 1.3em;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-club-benefits__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-vip-club-benefits__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-club-benefits__faq-answer {
  font-size: 1.1em;
  line-height: 1.7;
  color: #666666;
  padding-top: 15px;
  display: none; /* Hidden by default */
}

.page-vip-club-benefits__faq-answer.active {
  display: block;
}

.page-vip-club-benefits__faq-footer {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #555555;
}

.page-vip-club-benefits__faq-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-benefits__faq-link:hover {
  text-decoration: underline;
}

.page-vip-club-benefits__final-cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-vip-club-benefits__final-cta-section .page-vip-club-benefits__section-title {
  color: #FCBC45;
}

.page-vip-club-benefits__final-cta-section .page-vip-club-benefits__section-description {
  color: #CCCCCC;
}

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

  .page-vip-club-benefits__section-title {
    font-size: 2.2em;
  }

  .page-vip-club-benefits__tiers-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-vip-club-benefits__tier-card {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-vip-club-benefits {
    padding-top: var(--header-offset, 80px);
  }

  .page-vip-club-benefits__hero-section {
    padding: 60px 0;
  }

  .page-vip-club-benefits__hero-title {
    font-size: 2.2em;
  }

  .page-vip-club-benefits__hero-description {
    font-size: 1.1em;
  }

  .page-vip-club-benefits__hero-button,
  .page-vip-club-benefits__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-club-benefits__section-title {
    font-size: 1.8em;
  }

  .page-vip-club-benefits__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-vip-club-benefits__overview-section,
  .page-vip-club-benefits__tiers-section,
  .page-vip-club-benefits__join-section,
  .page-vip-club-benefits__faq-section,
  .page-vip-club-benefits__final-cta-section {
    padding: 60px 0;
  }

  .page-vip-club-benefits__benefits-grid,
  .page-vip-club-benefits__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club-benefits__benefit-icon {
    width: 250px; /* Ensure min 200px */
    height: 187px; /* Ensure min 200px */
    max-width: 100%;
    height: auto;
  }

  .page-vip-club-benefits__tier-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: 200px;
    object-fit: cover;
  }

  .page-vip-club-benefits__faq-question {
    font-size: 1.1em;
  }

  .page-vip-club-benefits__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-vip-club-benefits__hero-title {
    font-size: 1.8em;
  }

  .page-vip-club-benefits__hero-description {
    font-size: 0.9em;
  }

  .page-vip-club-benefits__section-title {
    font-size: 1.5em;
  }

  .page-vip-club-benefits__benefit-icon {
    width: 200px; /* Smallest allowed */
    height: 150px; /* Smallest allowed */
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all images within .page-vip-club-benefits are at least 200px wide/high on mobile */
@media (max-width: 768px) {
  .page-vip-club-benefits img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio and cover area */
  }
  /* Override specific image sizes if they fall below 200px */
  .page-vip-club-benefits__benefit-icon, .page-vip-club-benefits__tier-image {
    min-width: 200px;
    min-height: 200px;
  }
}