/* 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: #121212; /* Inherited from body, but explicitly set for clarity */
}

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

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top, so set to 0 to avoid double padding */
}

.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.6);
  z-index: 2;
}

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

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

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

.page-vip-club__hero-cta-button,
.page-vip-club__cta-button {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__hero-cta-button:hover,
.page-vip-club__cta-button:hover {
  background-color: #005f2e;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-vip-club__intro-section,
.page-vip-club__levels-section,
.page-vip-club__benefits-section,
.page-vip-club__how-to-join-section,
.page-vip-club__commitment-section,
.page-vip-club__faq-section,
.page-vip-club__cta-section {
  padding: 60px 0;
}

.page-vip-club__dark-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-vip-club__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-club__highlight {
  color: #FFFF00; /* Register/Login font color for highlight */
  font-weight: bold;
}

.page-vip-club__inline-link {
  color: #FFFF00; /* Yellow for inline links to stand out */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-vip-club__inline-link:hover {
  color: #fff;
}

.page-vip-club__image-wrapper {
  text-align: center;
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-vip-club__image-wrapper--full-width {
  max-width: 100%;
}

.page-vip-club__responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

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

.page-vip-club__benefit-card {
  background-color: rgba(0, 0, 0, 0.4); /* Darker background for card to ensure white text contrast */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 0, 0, 0.5);
}

.page-vip-club__card-title {
  font-size: 1.5em;
  color: #FFFF00; /* Yellow for card titles */
  margin-bottom: 15px;
}

.page-vip-club__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-vip-club__steps-list,
.page-vip-club__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-vip-club__list-item {
  background-color: rgba(0, 0, 0, 0.2); /* Darker background for list item */
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #017439;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-vip-club__list-item strong {
  color: #FFFF00;
}

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

.page-vip-club__faq-item {
  background-color: rgba(0, 0, 0, 0.3); /* Darker background for FAQ item */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-club__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.4); /* Darker summary background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-vip-club__faq-item summary:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-vip-club__faq-qtext {
  color: #FFFF00; /* Yellow for FAQ questions */
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-vip-club__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club__container {
    padding: 0 15px;
  }
  .page-vip-club__hero-section {
    height: 70vh;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-cta-button,
  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
    padding-top: 30px;
  }
  .page-vip-club__intro-section,
  .page-vip-club__levels-section,
  .page-vip-club__benefits-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__commitment-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    padding: 40px 0;
  }
  .page-vip-club__text-block {
    font-size: 0.95em;
  }
  .page-vip-club__card-title {
    font-size: 1.3em;
  }
  .page-vip-club__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-vip-club__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Mobile responsive for images */
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__image-wrapper,
  .page-vip-club__benefits-grid,
  .page-vip-club__benefit-card,
  .page-vip-club__steps-list,
  .page-vip-club__commitment-list,
  .page-vip-club__list-item,
  .page-vip-club__faq-list,
  .page-vip-club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-vip-club__cta-button,
  .page-vip-club__hero-cta-button,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 10px; /* Add space between stacked buttons */
  }
  .page-vip-club__cta-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}

/* Color Contrast Fixes - Ensure text is readable on various backgrounds */
.page-vip-club__dark-bg {
  color: #ffffff; /* Deep background with light text */
  background-color: #017439;
}

.page-vip-club__light-bg {
  color: #333333; /* Light background with dark text */
  background-color: #ffffff;
}

/* Specific contrast adjustments */
.page-vip-club__hero-title, .page-vip-club__hero-description {
  color: #ffffff;
}

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

.page-vip-club__benefit-card {
  background-color: rgba(0, 0, 0, 0.4); /* Darker background for card to ensure white text contrast */
  color: #ffffff;
}

.page-vip-club__card-title {
  color: #FFFF00; /* Yellow for card titles for contrast */
}

.page-vip-club__list-item {
  background-color: rgba(0, 0, 0, 0.2); /* Darker background for list item */
  color: #ffffff;
}

.page-vip-club__faq-item {
  background-color: rgba(0, 0, 0, 0.3); /* Darker background for FAQ item */
  color: #ffffff;
}

.page-vip-club__faq-item summary {
  background-color: rgba(0, 0, 0, 0.4); /* Darker summary background */
}

.page-vip-club__faq-qtext {
  color: #FFFF00; /* Yellow for FAQ questions */
}

.page-vip-club__faq-answer {
  color: #f0f0f0;
}

/* Ensure no CSS filters on images */
.page-vip-club img {
  filter: none; /* Explicitly remove any filters */
}

/* Fixed header offset is handled by shared.css for body padding-top */
/* The hero section has padding-top: 0; as per instructions to avoid double padding */