/* style/vip-program.css */

/* Base styles for the VIP Program page */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Inherited from shared.css, explicitly set for clarity */
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image for text readability */
}

/* General Container */
.page-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section Titles */
.page-vip-program__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for section titles */
}

/* Text Blocks */
.page-vip-program__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0; /* Slightly lighter than white for body text on dark background */
}

/* Highlighted text */
.page-vip-program__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Buttons */
.page-vip-program__cta-button {
  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;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-vip-program__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-vip-program__btn-primary:hover {
  background-color: #1a8cc2;
  border-color: #1a8cc2;
}

.page-vip-program__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 20px;
}

.page-vip-program__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Section specific styling */
.page-vip-program__introduction-section {
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #e0e0e0;
}

.page-vip-program__levels-section {
  background-color: #0d0d0d; /* Even darker background */
  color: #ffffff;
}

.page-vip-program__benefits-section {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.page-vip-program__join-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-vip-program__faq-section {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.page-vip-program__cta-final-section {
  background-color: #0a0a0a;
  color: #ffffff;
  padding-bottom: 60px;
}

/* Card styles */
.page-vip-program__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff; /* Light text on card background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* VIP Levels Grid */
.page-vip-program__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-vip-program__level-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-vip-program__level-description {
  font-size: 1em;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-vip-program__level-benefits {
  list-style: disc;
  padding-left: 20px;
  color: #e0e0e0;
}

.page-vip-program__level-benefits li {
  margin-bottom: 5px;
}

.page-vip-program__levels-image,
.page-vip-program__benefits-image,
.page-vip-program__join-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-vip-program__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-program__benefit-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Join Steps */
.page-vip-program__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  color: #e0e0e0;
}

.page-vip-program__join-steps li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.1em;
}

.page-vip-program__join-steps li strong {
  color: #26A9E0;
}

/* CTA Final Section */
.page-vip-program__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-vip-program__faq-list {
  margin-top: 30px;
}

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

.page-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.02);
  transition: background-color 0.3s ease;
}

.page-vip-program__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

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

/* For <details> tag, hide default marker */
.page-vip-program__faq-item summary {
  list-style: none;
}
.page-vip-program__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-vip-program__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

/* Accessibility for links in dark background */
.page-vip-program a {
  color: #26A9E0; /* Brand color for links */
  text-decoration: underline;
}

.page-vip-program a:hover {
  color: #1a8cc2;
  text-decoration: none;
}

/* --- Responsive Design --- */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-vip-program__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

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

  .page-vip-program__text-block {
    font-size: 0.95em;
  }

  .page-vip-program__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Image responsiveness - MUST be explicit and use !important */
  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images must adapt */
  .page-vip-program__levels-grid,
  .page-vip-program__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-program__level-card,
  .page-vip-program__benefit-card {
    padding: 20px;
  }

  .page-vip-program__cta-button,
  .page-vip-program a[class*="button"],
  .page-vip-program a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
  }

  .page-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

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

  /* Ensure video responsiveness - if any */
  .page-vip-program video,
  .page-vip-program__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-program__video-section,
  .page-vip-program__video-container,
  .page-vip-program__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
}

/* Ensure no filter on images */
.page-vip-program img {
  filter: none !important;
}

/* Enforce content area image size minimums for non-header/footer images */
.page-vip-program__hero-image,
.page-vip-program__levels-image,
.page-vip-program__benefits-image,
.page-vip-program__join-image,
.page-vip-program__card img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific contrast fixes if needed, though general dark-bg/light-text should cover most */
.page-vip-program__dark-bg {
  color: #ffffff;
}

.page-vip-program__light-bg {
  color: #e0e0e0;
}

.page-vip-program__card {
  color: #ffffff;
}