/* style/vip-exclusive.css */
/* Base styles for the VIP Exclusive page */
.page-vip-exclusive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #111; /* Inherited from shared, but explicitly set for clarity */
}

/* Fixed header offset for main content or hero section */
.page-vip-exclusive__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-vip-exclusive__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000080; /* Fallback background for video */
}

.page-vip-exclusive__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-vip-exclusive__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.page-vip-exclusive__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

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

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

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

.page-vip-exclusive__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-vip-exclusive__btn-primary,
.page-vip-exclusive__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;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-vip-exclusive__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue text for contrast */
  border: 2px solid #FFD700;
}

.page-vip-exclusive__btn-primary:hover {
  background-color: #e6c200;
  color: #000050;
}

.page-vip-exclusive__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-vip-exclusive__btn-secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

/* General Section Styling */
.page-vip-exclusive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-vip-exclusive__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section titles */
}

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

/* Benefits Section */
.page-vip-exclusive__benefits-section {
  padding: 80px 0;
  background-color: #000080; /* Dark Blue background */
}

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

.page-vip-exclusive__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-exclusive__benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-exclusive__benefit-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-exclusive__benefit-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold */
}

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

/* How to Join Section */
.page-vip-exclusive__how-to-join-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-vip-exclusive__how-to-join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-exclusive__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-vip-exclusive__step-card:hover {
  transform: translateY(-10px);
}

.page-vip-exclusive__step-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-exclusive__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000080; /* Dark Blue */
}

.page-vip-exclusive__step-description {
  font-size: 1em;
  color: #555555;
}

/* VIP Tiers Section */
.page-vip-exclusive__tiers-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Dark background */
}

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

.page-vip-exclusive__tier-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-exclusive__tier-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-exclusive__tier-badge {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%; /* Make badges round */
  object-fit: cover;
  border: 3px solid #FFD700; /* Gold border */
}

.page-vip-exclusive__tier-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold */
}

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

/* FAQ Section */
.page-vip-exclusive__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
}

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

.page-vip-exclusive__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden; /* For smooth max-height transition */
}

.page-vip-exclusive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #f0f0f0; /* Slightly off-white for question background */
  transition: background-color 0.3s ease;
}

.page-vip-exclusive__faq-question:hover {
  background-color: #e0e0e0;
}

.page-vip-exclusive__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #000080; /* Dark Blue */
}

.page-vip-exclusive__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease;
}

.page-vip-exclusive__faq-item.active .page-vip-exclusive__faq-toggle {
  transform: rotate(45deg); /* Change to 'x' or '-' */
}

.page-vip-exclusive__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-vip-exclusive__faq-item.active .page-vip-exclusive__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 30px;
}

/* Call to Action Section */
.page-vip-exclusive__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #000080; /* Dark Blue */
}

.page-vip-exclusive__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
}

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

/* Image specific styles to ensure min-size and object-fit */
.page-vip-exclusive img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Color contrast fixes for specific elements */
.page-vip-exclusive__dark-bg {
  color: #ffffff; /* Ensure light text on dark background */
}

.page-vip-exclusive__light-bg {
  color: #333333; /* Ensure dark text on light background */
}

.page-vip-exclusive__text-contrast-fix {
  color: #333333 !important; /* Force dark text on light background */
}

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

@media (max-width: 768px) {
  .page-vip-exclusive__hero-section {
    height: 70vh;
  }
  .page-vip-exclusive__hero-title {
    font-size: 2.2em;
  }
  .page-vip-exclusive__hero-description {
    font-size: 1em;
  }
  .page-vip-exclusive__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-exclusive__btn-primary,
  .page-vip-exclusive__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important; /* Force full width */
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-exclusive__container {
    padding: 20px 15px;
  }
  .page-vip-exclusive__section-title {
    font-size: 1.8em;
  }
  .page-vip-exclusive__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* Images responsive */
  .page-vip-exclusive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }

  /* Video responsive */
  .page-vip-exclusive video,
  .page-vip-exclusive__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-exclusive__hero-video-wrapper,
  .page-vip-exclusive__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* All containers with images/videos/buttons */
  .page-vip-exclusive__section,
  .page-vip-exclusive__card,
  .page-vip-exclusive__container,
  .page-vip-exclusive__hero-video-wrapper,
  .page-vip-exclusive__benefits-grid,
  .page-vip-exclusive__how-to-join-steps,
  .page-vip-exclusive__tiers-grid,
  .page-vip-exclusive__faq-list,
  .page-vip-exclusive__hero-cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ specific mobile adjustments */
  .page-vip-exclusive__faq-question {
    padding: 15px 20px;
  }
  .page-vip-exclusive__faq-answer {
    padding: 0 20px;
  }
  .page-vip-exclusive__faq-item.active .page-vip-exclusive__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-exclusive__hero-title {
    font-size: 1.8em;
  }
  .page-vip-exclusive__section-title {
    font-size: 1.5em;
  }
  .page-vip-exclusive__benefit-title,
  .page-vip-exclusive__step-title,
  .page-vip-exclusive__tier-title {
    font-size: 1.5em;
  }
}