/* style/vip-club.css */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--primary-color, #1A202C); /* Assuming body background is dark */
}

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

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

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

.page-vip-club__content-area-text {
  font-size: 1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: calc(var(--header-offset, 120px) + 80px); /* Adjust for fixed header */
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C 0%, #303b4d 100%);
  color: #ffffff;
}

.page-vip-club__hero-content {
  z-index: 2;
  max-width: 900px;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-vip-club__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-vip-club__btn-primary,
.page-vip-club__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;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-vip-club__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-vip-club__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-vip-club__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Section */
.page-vip-club__video-section {
  padding: 80px 20px;
  background-color: #1A202C;
  color: #f0f0f0;
  text-align: center;
}

.page-vip-club__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto 30px auto;
  border-radius: 10px;
}

.page-vip-club__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}

.page-vip-club__video-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #cccccc;
}

/* Benefits Section */
.page-vip-club__benefits-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-vip-club__benefits-section .page-vip-club__section-title {
  color: #1A202C;
}

.page-vip-club__benefits-section .page-vip-club__section-description,
.page-vip-club__benefits-section .page-vip-club__content-area-text {
  color: #555555;
}

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

.page-vip-club__benefit-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-vip-club__benefit-icon {
  width: 200px; /* Enforced min size */
  height: 200px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  border-radius: 5px;
  display: block;
}

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

.page-vip-club__benefit-text {
  color: #666666;
  font-size: 1em;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 20px;
  background-color: #1A202C;
  color: #f0f0f0;
}

.page-vip-club__tiers-section .page-vip-club__section-description {
  color: #cccccc;
}

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

.page-vip-club__tier-card {
  background-color: #2a3447;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__tier-image {
  width: 100%;
  height: 200px; /* Ensure minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-vip-club__tier-features li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-vip-club__tier-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95em;
  color: #aaaaaa;
}

.page-vip-club__tier-note a {
  color: #FFD700;
  text-decoration: underline;
}

.page-vip-club__tier-note a:hover {
  color: #e6c200;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-vip-club__how-to-join-section .page-vip-club__section-title {
  color: #1A202C;
}

.page-vip-club__how-to-join-section .page-vip-club__section-description,
.page-vip-club__how-to-join-section .page-vip-club__content-area-text {
  color: #555555;
}

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

.page-vip-club__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-text {
  color: #666666;
  font-size: 1em;
}

.page-vip-club__step-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-vip-club__step-text a:hover {
  color: #e6c200;
}

.page-vip-club__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-vip-club__cta-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
  font-weight: bold;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 20px;
  background-color: #1A202C;
  color: #f0f0f0;
}

.page-vip-club__faq-section .page-vip-club__section-description {
  color: #cccccc;
}

.page-vip-club__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-vip-club__faq-item {
  background-color: #2a3447;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: #3a4760;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Ensures it expands fully */
  padding: 15px 25px 20px 25px;
}

.page-vip-club__faq-answer p {
  font-size: 1em;
  color: #cccccc;
  margin: 0;
}

/* Contact CTA Section */
.page-vip-club__contact-cta-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333333;
  text-align: center;
}

.page-vip-club__contact-cta-section .page-vip-club__section-title {
  color: #1A202C;
}

.page-vip-club__contact-cta-section .page-vip-club__section-description {
  color: #555555;
  margin-bottom: 40px;
}

.page-vip-club__contact-cta-section .page-vip-club__btn-primary,
.page-vip-club__contact-cta-section .page-vip-club__btn-secondary {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    padding: 60px 15px;
    padding-top: calc(var(--header-offset, 120px) + 60px);
    min-height: 500px;
  }

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

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

  .page-vip-club__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-vip-club__video-section,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__contact-cta-section {
    padding: 60px 15px;
  }

  .page-vip-club__section-description,
  .page-vip-club__content-area-text {
    margin-bottom: 30px;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card {
    padding: 25px;
  }

  .page-vip-club__benefit-icon {
    width: 200px !important;
    height: 200px !important;
  }

  .page-vip-club__tier-image {
    height: 200px !important;
  }

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

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

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px 20px 20px 20px;
  }

  /* Ensure all images are responsive */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all video elements are responsive */
  .page-vip-club video,
  .page-vip-club__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure video wrapper is responsive */
  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* General container adaptation for mobile */
  .page-vip-club__container,
  .page-vip-club__hero-content,
  .page-vip-club__hero-cta,
  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-vip-club__hero-section .page-vip-club__hero-image-wrapper {
    opacity: 0.1;
  }

  .page-vip-club__contact-cta-section .page-vip-club__btn-primary,
  .page-vip-club__contact-cta-section .page-vip-club__btn-secondary {
    display: block;
    margin: 10px auto;
  }
}

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