/* style/vip-club.css */
.page-vip-club {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* White background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-vip-club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Primary color for hero background */
  color: #FFFFFF;
}

.page-vip-club__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-vip-club__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-vip-club__hero-cta,
.page-vip-club__final-cta {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  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;
  border: none;
  cursor: pointer;
}

.page-vip-club__hero-cta:hover,
.page-vip-club__final-cta:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-vip-club__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
}

.page-vip-club__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 25px;
  color: #000000;
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-vip-club__benefits-section,
.page-vip-club__levels-overview,
.page-vip-club__promotions-section,
.page-vip-club__how-to-join-section,
.page-vip-club__details-list-section,
.page-vip-club__faq-section,
.page-vip-club__cta-final-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-vip-club__benefits-grid,
.page-vip-club__levels-grid,
.page-vip-club__promo-grid,
.page-vip-club__join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__benefit-card,
.page-vip-club__level-card,
.page-vip-club__promo-card,
.page-vip-club__step-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__benefit-card img,
.page-vip-club__level-card img,
.page-vip-club__promo-card img,
.page-vip-club__step-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-vip-club__card-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

.page-vip-club__card-cta {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-vip-club__card-cta:hover {
  background-color: #333333;
}

.page-vip-club__cta-container {
  text-align: center;
  margin-top: 50px;
}

.page-vip-club__secondary-cta {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-vip-club__secondary-cta:hover {
  background-color: #333333;
}

.page-vip-club__details-list {
  margin-top: 40px;
}

.page-vip-club__detail-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-club__detail-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-vip-club__detail-title a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__detail-title a:hover {
  color: #FCBC45;
}

.page-vip-club__detail-description {
  color: #555555;
  margin-bottom: 15px;
}

.page-vip-club__detail-cta {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-club__detail-cta:hover {
  background-color: #e0a538;
}

.page-vip-club__faq-accordion {
  margin-top: 40px;
}

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
}

.page-vip-club__faq-question {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-vip-club__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-question.active {
  background-color: #333333;
}

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

.page-vip-club__faq-answer {
  padding: 0 25px;
  background-color: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-club__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-vip-club__faq-answer p {
  margin: 0;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }

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

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__levels-grid,
  .page-vip-club__promo-grid,
  .page-vip-club__join-steps {
    grid-template-columns: 1fr;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__level-card,
  .page-vip-club__promo-card,
  .page-vip-club__step-card {
    padding: 20px;
  }

  /* Mobile content image overflow prevention */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-vip-club__hero-cta,
  .page-vip-club__final-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-vip-club__benefits-section,
  .page-vip-club__levels-overview,
  .page-vip-club__promotions-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__details-list-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .page-vip-club__card-title {
    font-size: 1.3em;
  }

  .page-vip-club__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
}