/* style/vip-club-levels-privileges.css */

/* Base styles for the page */
.page-vip-club-levels-privileges {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: var(--primary-bg); /* Inherit from shared, expected dark */
}

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

.page-vip-club-levels-privileges__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-vip-club-levels-privileges__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Color contrast safety */
.page-vip-club-levels-privileges__dark-bg {
  background-color: #0A0A0A;
  color: #ffffff;
}

.page-vip-club-levels-privileges__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-vip-club-levels-privileges__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-vip-club-levels-privileges__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.page-vip-club-levels-privileges__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-vip-club-levels-privileges__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.page-vip-club-levels-privileges__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #0A0A0A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club-levels-privileges__btn-primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-vip-club-levels-privileges__intro-section, 
.page-vip-club-levels-privileges__privileges-section, 
.page-vip-club-levels-privileges__faq-section, 
.page-vip-club-levels-privileges__cta-section {
  padding: 80px 0;
}

.page-vip-club-levels-privileges__levels-section, 
.page-vip-club-levels-privileges__how-to-upgrade-section {
  padding: 80px 0;
}

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

.page-vip-club-levels-privileges__level-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-vip-club-levels-privileges__level-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-vip-club-levels-privileges__level-title {
  font-size: 1.8em;
  color: #0A0A0A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-club-levels-privileges__level-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-vip-club-levels-privileges__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #333333;
}

.page-vip-club-levels-privileges__level-benefits li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-vip-club-levels-privileges__level-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club-levels-privileges__note {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 40px;
  font-style: italic;
}

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

.page-vip-club-levels-privileges__privilege-card {
  background-color: #0A0A0A;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-privileges__privilege-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-vip-club-levels-privileges__upgrade-steps {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-vip-club-levels-privileges__upgrade-steps li {
  background-color: #1a1a1a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  position: relative;
  padding-left: 60px;
}

.page-vip-club-levels-privileges__upgrade-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A0A0A;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-vip-club-levels-privileges__step-title {
  color: #FFD700;
  font-size: 1.2em;
}

.page-vip-club-levels-privileges__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club-levels-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  font-weight: bold;
  font-size: 1.1em;
  color: #0A0A0A;
}

.page-vip-club-levels-privileges__faq-question:hover {
  background-color: #e6e6e6;
}

.page-vip-club-levels-privileges__faq-title {
  margin: 0;
  font-size: 1.1em;
  color: #0A0A0A;
}

.page-vip-club-levels-privileges__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club-levels-privileges__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px;
}

.page-vip-club-levels-privileges__faq-answer p {
  margin: 0;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club-levels-privileges__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club-levels-privileges__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-levels-privileges__section-title {
    font-size: 2em;
  }
  .page-vip-club-levels-privileges__level-grid,
  .page-vip-club-levels-privileges__privilege-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Mobile images responsiveness */
  .page-vip-club-levels-privileges img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile buttons responsiveness */
  .page-vip-club-levels-privileges__btn-primary,
  .page-vip-club-levels-privileges 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;
  }

  /* Containers responsiveness */
  .page-vip-club-levels-privileges__section,
  .page-vip-club-levels-privileges__card,
  .page-vip-club-levels-privileges__container,
  .page-vip-club-levels-privileges__hero-section,
  .page-vip-club-levels-privileges__intro-section,
  .page-vip-club-levels-privileges__levels-section,
  .page-vip-club-levels-privileges__privileges-section,
  .page-vip-club-levels-privileges__how-to-upgrade-section,
  .page-vip-club-levels-privileges__faq-section,
  .page-vip-club-levels-privileges__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-vip-club-levels-privileges__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset on mobile */
    min-height: 500px;
  }
  
  .page-vip-club-levels-privileges__hero-title {
    font-size: 2em;
  }

  .page-vip-club-levels-privileges__hero-description {
    font-size: 1em;
  }

  .page-vip-club-levels-privileges__section-title {
    font-size: 1.8em;
  }

  .page-vip-club-levels-privileges__text-block {
    font-size: 0.95em;
  }

  .page-vip-club-levels-privileges__level-grid,
  .page-vip-club-levels-privileges__privilege-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-levels-privileges__level-icon {
    width: 150px;
  }
  
  .page-vip-club-levels-privileges__upgrade-steps li {
    padding-left: 50px;
    font-size: 1em;
  }
  
  .page-vip-club-levels-privileges__upgrade-steps li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  
  .page-vip-club-levels-privileges__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  
  .page-vip-club-levels-privileges__faq-title {
    font-size: 1em;
  }
  
  .page-vip-club-levels-privileges__faq-answer {
    padding: 15px;
  }
}