/* style/vip-club.css */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Matches body background */
}

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

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

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

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

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

.page-vip-club__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  color: #ffffff;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-vip-club__section-title--light {
  color: #FFD700;
}

.page-vip-club__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-vip-club__paragraph--light {
  color: #f0f0f0;
}

.page-vip-club__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  text-align: center;
  box-sizing: border-box;
}

.page-vip-club__btn-primary {
  background-color: #FFD700;
  color: #0a0a0a;
  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: #0a0a0a;
}

.page-vip-club__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.page-vip-club__dark-bg {
  background-color: #8B0000; /* Dark red auxiliary color for sections */
  color: #ffffff;
}

.page-vip-club__light-bg {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter background for cards */
  color: #ffffff;
}

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

.page-vip-club__level-card,
.page-vip-club__benefit-card,
.page-vip-club__step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-club__level-title,
.page-vip-club__benefit-title,
.page-vip-club__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__level-description,
.page-vip-club__benefit-description,
.page-vip-club__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-vip-club__step-icon {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #8B0000;
  margin: 0 auto 20px;
}

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

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

.page-vip-club__image-spacing {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-vip-club__faq-list {
  margin-top: 30px;
}

.page-vip-club__faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #8B0000; /* Dark red for question background */
  color: #FFD700;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-vip-club__faq-title {
  margin: 0;
  font-size: 1.2em;
}

.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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03);
  color: #f0f0f0;
  text-align: justify;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px !important;
}

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

.page-vip-club a {
  color: #FFD700;
  text-decoration: none;
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: 70vh;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

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

  .page-vip-club__level-title,
  .page-vip-club__benefit-title,
  .page-vip-club__step-title {
    font-size: 1.5em;
  }

  .page-vip-club__content-area {
    padding: 40px 15px;
  }

  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 5px 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Container for images/content */
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__cta-section .page-vip-club__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px) !important; 
  }

  /* Mobile video responsiveness (if any) */
  .page-vip-club video,
  .page-vip-club__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club__video-section,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-vip-club__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

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

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

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

  .page-vip-club__level-title,
  .page-vip-club__benefit-title,
  .page-vip-club__step-title {
    font-size: 1.3em;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
}