/* style/vip-privileges.css */

/* Base styles for the page */
.page-vip-privileges {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-vip-privileges__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-vip-privileges__section-title,
.page-vip-privileges__hero-title,
.page-vip-privileges__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0;
  font-weight: bold;
}

.page-vip-privileges__text-block,
.page-vip-privileges__hero-description,
.page-vip-privileges__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-vip-privileges__btn-primary,
.page-vip-privileges__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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;
  box-sizing: border-box;
}

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

.page-vip-privileges__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-vip-privileges__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

/* Hero Section */
.page-vip-privileges__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-color: #0a0a0a; /* Dark background for hero */
}

.page-vip-privileges__hero-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
  text-align: center;
  padding: 0 15px;
}

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

.page-vip-privileges__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken video for text readability */
  cursor: pointer;
}

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

.page-vip-privileges__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

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

/* Introduction Section */
.page-vip-privileges__introduction {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-privileges__introduction .page-vip-privileges__section-title {
  color: #000000;
}

.page-vip-privileges__introduction .page-vip-privileges__text-block {
  color: #333333;
}

/* VIP Tiers Section */
.page-vip-privileges__tiers {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-vip-privileges__tiers .page-vip-privileges__section-title {
  color: #26A9E0;
}

.page-vip-privileges__tiers .page-vip-privileges__text-block {
  color: #f0f0f0;
}

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

.page-vip-privileges__tier-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-vip-privileges__tier-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-vip-privileges__tier-note {
  margin-top: 50px;
  font-style: italic;
  color: #cccccc;
}

/* Exclusive Privileges Section */
.page-vip-privileges__exclusive-privileges {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-privileges__exclusive-privileges .page-vip-privileges__section-title {
  color: #000000;
}

.page-vip-privileges__exclusive-privileges .page-vip-privileges__text-block {
  color: #333333;
}

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

.page-vip-privileges__privilege-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333333;
}

.page-vip-privileges__privilege-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-vip-privileges__privilege-note {
  margin-top: 50px;
  font-style: italic;
  color: #666666;
}

/* How to Join Section */
.page-vip-privileges__how-to-join {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-vip-privileges__how-to-join .page-vip-privileges__section-title {
  color: #26A9E0;
}

.page-vip-privileges__how-to-join .page-vip-privileges__text-block {
  color: #f0f0f0;
}

.page-vip-privileges__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-privileges__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-vip-privileges__step-item strong {
  color: #26A9E0;
}

.page-vip-privileges__step-item a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ Section */
.page-vip-privileges__faq {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-privileges__faq .page-vip-privileges__section-title {
  color: #000000;
}

.page-vip-privileges__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-vip-privileges__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #333333;
  background-color: #eef;
  border-bottom: 1px solid #e0e0e0;
}

.page-vip-privileges__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-vip-privileges__faq-item[open] .page-vip-privileges__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-privileges__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #eee;
}

.page-vip-privileges__faq-item:not([open]) .page-vip-privileges__faq-answer {
  display: none;
}

/* CTA Section */
.page-vip-privileges__cta {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 80px 20px;
}

.page-vip-privileges__cta-content {
  max-width: 900px;
}

.page-vip-privileges__cta-title {
  color: #ffffff;
  font-size: 3em;
}

.page-vip-privileges__cta-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-privileges__hero-title {
    font-size: 2.8em;
  }
  .page-vip-privileges__hero-description {
    font-size: 1.1em;
  }
  .page-vip-privileges__section-title,
  .page-vip-privileges__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-privileges {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-vip-privileges__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    min-height: 60vh;
  }
  
  .page-vip-privileges__hero-title {
    font-size: 2.2em;
  }
  .page-vip-privileges__hero-description {
    font-size: 1em;
  }
  
  .page-vip-privileges__section-title,
  .page-vip-privileges__cta-title {
    font-size: 1.8em;
  }
  
  .page-vip-privileges__text-block,
  .page-vip-privileges__hero-description,
  .page-vip-privileges__cta-description {
    font-size: 0.95em;
  }
  
  .page-vip-privileges__btn-primary,
  .page-vip-privileges__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  
  .page-vip-privileges__hero-cta-buttons,
  .page-vip-privileges__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-vip-privileges img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-privileges video,
  .page-vip-privileges__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Content containers mobile adaptation */
  .page-vip-privileges__section,
  .page-vip-privileges__container,
  .page-vip-privileges__tier-card,
  .page-vip-privileges__privilege-card,
  .page-vip-privileges__hero-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-privileges__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-vip-privileges__faq-answer {
    padding: 10px 20px;
  }
}

/* Color Contrast Fixes */
.page-vip-privileges__dark-bg {
  background-color: #0a0a0a; /* Body background */
  color: #ffffff; /* Light text */
}

.page-vip-privileges__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text */
}

.page-vip-privileges__hero-title,
.page-vip-privileges__cta-title {
  color: #ffffff; /* Ensure white text on dark backgrounds */
}

.page-vip-privileges__section-title {
  color: #26A9E0; /* Brand color for titles on light/dark backgrounds */
}

.page-vip-privileges__introduction .page-vip-privileges__section-title,
.page-vip-privileges__exclusive-privileges .page-vip-privileges__section-title,
.page-vip-privileges__faq .page-vip-privileges__section-title {
  color: #000000; /* Titles on white background */
}

.page-vip-privileges p,
.page-vip-privileges li {
  color: #f0f0f0; /* Default light text for paragraphs on dark body */
}

.page-vip-privileges__introduction p,
.page-vip-privileges__exclusive-privileges p,
.page-vip-privileges__faq p {
  color: #333333; /* Dark text for paragraphs on light sections */
}

.page-vip-privileges__tier-card,
.page-vip-privileges__step-item {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
  color: #ffffff;
}

.page-vip-privileges__privilege-card {
  background-color: #f9f9f9; /* Light background for privilege cards */
  color: #333333;
}

.page-vip-privileges__faq-item {
  background-color: #f9f9f9;
  color: #333333;
}

.page-vip-privileges__faq-question {
  background-color: #eef; /* Slightly lighter background for FAQ questions */
  color: #333333;
}

.page-vip-privileges__faq-answer {
  color: #555555;
}