/* style/vip-club-levels-benefits.css */

.page-vip-club-levels-benefits {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensure content background is white */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC and mobile */
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-vip-club-levels-benefits__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-vip-club-levels-benefits__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF; /* White text on hero image */
  padding: 0;
  min-height: 500px;
}

.page-vip-club-levels-benefits__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-club-levels-benefits__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 8px;
  margin: 40px 20px; /* Ensure content is not flush with edges */
}

.page-vip-club-levels-benefits__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club-levels-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-vip-club-levels-benefits__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club-levels-benefits__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
  text-align: center;
  font-size: 1.1em;
}

.page-vip-club-levels-benefits__button--register {
  background-color: #FFFFFF; /* Register: #FFFFFF */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-vip-club-levels-benefits__button--register:hover {
  background-color: #F0F0F0;
  color: #000000;
}

.page-vip-club-levels-benefits__button--login {
  background-color: #FCBC45; /* Login: #FCBC45 */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-vip-club-levels-benefits__button--login:hover {
  background-color: #E0A030;
  color: #000000;
}

.page-vip-club-levels-benefits__button--join,
.page-vip-club-levels-benefits__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-vip-club-levels-benefits__button--join:hover,
.page-vip-club-levels-benefits__button--register-large:hover {
  background-color: #E0A030;
  color: #000000;
}

.page-vip-club-levels-benefits__button--learn-promo {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-vip-club-levels-benefits__button--learn-promo:hover {
  background-color: #333333;
  color: #FFFFFF;
}

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

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

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

.page-vip-club-levels-benefits__level-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club-levels-benefits__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-vip-club-levels-benefits__level-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
  object-fit: cover;
}

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

.page-vip-club-levels-benefits__level-card p {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-vip-club-levels-benefits__level-features li {
  margin-bottom: 10px;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-vip-club-levels-benefits__level-features li::before {
  content: '⭐'; /* Star emoji for bullet point */
  position: absolute;
  left: 0;
  color: #FCBC45;
}

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

.page-vip-club-levels-benefits__path-step {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-vip-club-levels-benefits__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FCBC45;
  color: #000000;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-vip-club-levels-benefits__path-step p {
  color: #666666;
}

.page-vip-club-levels-benefits__faq-list {
  margin-top: 40px;
}

.page-vip-club-levels-benefits__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club-levels-benefits__faq-question {
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #000000;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #EFEFEF;
  border-bottom: 1px solid #E0E0E0;
}

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

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

.page-vip-club-levels-benefits__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #FFFFFF;
  color: #555555;
}

.page-vip-club-levels-benefits__faq-answer p {
  padding-bottom: 20px;
}

.page-vip-club-levels-benefits__faq-answer.active {
  max-height: 300px; /* Increased max-height for longer content */
  padding-top: 15px;
  padding-bottom: 20px;
}

.page-vip-club-levels-benefits__final-cta {
  text-align: center;
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.page-vip-club-levels-benefits__final-cta .page-vip-club-levels-benefits__cta-buttons {
  margin-top: 30px;
  gap: 15px;
}

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

@media (max-width: 768px) {
  .page-vip-club-levels-benefits__hero-section {
    min-height: 400px;
  }
  .page-vip-club-levels-benefits__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club-levels-benefits__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-levels-benefits__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
  }
  .page-vip-club-levels-benefits__section {
    padding: 40px 15px;
  }
  .page-vip-club-levels-benefits__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-levels-benefits__levels-grid,
  .page-vip-club-levels-benefits__upgrade-path {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club-levels-benefits__level-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }

  /* Ensure all images within the content area are responsive and don't cause overflow */
  .page-vip-club-levels-benefits img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
  }
}

@media (max-width: 480px) {
  .page-vip-club-levels-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club-levels-benefits__hero-description {
    font-size: 1em;
  }
  .page-vip-club-levels-benefits__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-vip-club-levels-benefits__button {
    width: 100%;
  }
  .page-vip-club-levels-benefits__section-title {
    font-size: 1.5em;
  }
}