/* style/vip-club-privilege-details.css */
.page-vip-club-privilege-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherited from shared.css */
}

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

.page-vip-club-privilege-details__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjust padding-top to account for header */
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-vip-club-privilege-details__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
}

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

.page-vip-club-privilege-details__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-vip-club-privilege-details__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club-privilege-details__btn-primary,
.page-vip-club-privilege-details__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-vip-club-privilege-details__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.page-vip-club-privilege-details__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}

.page-vip-club-privilege-details__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-vip-club-privilege-details__content-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for content */
  color: #333333;
}

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

.page-vip-club-privilege-details__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-privilege-details__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-privilege-details__feature-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-vip-club-privilege-details__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-vip-club-privilege-details__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-vip-club-privilege-details__tiers-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Brand color background */
  color: #ffffff;
}

.page-vip-club-privilege-details__tiers-section .page-vip-club-privilege-details__section-title {
  color: #ffffff;
}

.page-vip-club-privilege-details__tiers-section .page-vip-club-privilege-details__section-description {
  color: #f0f0f0;
}

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

.page-vip-club-privilege-details__tier-card {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-vip-club-privilege-details__tier-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-vip-club-privilege-details__tier-requirement {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-vip-club-privilege-details__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club-privilege-details__tier-benefits li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #ffffff;
}

.page-vip-club-privilege-details__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #f0f0f0;
}

.page-vip-club-privilege-details__note a {
  color: #ffffff;
  text-decoration: underline;
}

.page-vip-club-privilege-details__how-to-join-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-vip-club-privilege-details__how-to-join-section .page-vip-club-privilege-details__section-title {
  color: #333333;
}

.page-vip-club-privilege-details__how-to-join-section .page-vip-club-privilege-details__section-description {
  color: #555555;
}

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

.page-vip-club-privilege-details__step-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-vip-club-privilege-details__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-vip-club-privilege-details__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #333333;
}

.page-vip-club-privilege-details__step-text {
  font-size: 1em;
  color: #555555;
}

.page-vip-club-privilege-details__step-text a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-privilege-details__step-text a:hover {
  text-decoration: underline;
}

.page-vip-club-privilege-details__faq-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for FAQ */
  color: #ffffff;
}

.page-vip-club-privilege-details__faq-section .page-vip-club-privilege-details__section-title {
  color: #ffffff;
}

.page-vip-club-privilege-details__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-vip-club-privilege-details__faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-vip-club-privilege-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-vip-club-privilege-details__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club-privilege-details__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-vip-club-privilege-details__faq-item.active .page-vip-club-privilege-details__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an 'X' or minus */
}

.page-vip-club-privilege-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: rgba(255, 255, 255, 0.02);
  color: #f0f0f0;
}

.page-vip-club-privilege-details__faq-item.active .page-vip-club-privilege-details__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-vip-club-privilege-details__cta-bottom-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
  color: #333333;
}

.page-vip-club-privilege-details__cta-bottom-section .page-vip-club-privilege-details__section-title {
  color: #333333;
}

.page-vip-club-privilege-details__cta-bottom-section .page-vip-club-privilege-details__section-description {
  color: #555555;
  margin-bottom: 40px;
}

.page-vip-club-privilege-details__full-width-button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club-privilege-details__hero-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-privilege-details__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club-privilege-details__hero-title {
    font-size: 2.2em;
  }

  .page-vip-club-privilege-details__hero-description {
    font-size: 1em;
  }

  .page-vip-club-privilege-details__section-title {
    font-size: 1.8em;
  }

  .page-vip-club-privilege-details__section-description {
    font-size: 0.95em;
  }

  .page-vip-club-privilege-details__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club-privilege-details__btn-primary,
  .page-vip-club-privilege-details__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-vip-club-privilege-details__feature-card,
  .page-vip-club-privilege-details__tier-card,
  .page-vip-club-privilege-details__step-card {
    padding: 25px;
  }

  .page-vip-club-privilege-details__feature-title,
  .page-vip-club-privilege-details__tier-title {
    font-size: 1.3em;
  }

  .page-vip-club-privilege-details__step-title {
    font-size: 1.4em;
  }

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

  .page-vip-club-privilege-details__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-vip-club-privilege-details img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club-privilege-details__container,
  .page-vip-club-privilege-details__hero-section,
  .page-vip-club-privilege-details__content-section,
  .page-vip-club-privilege-details__tiers-section,
  .page-vip-club-privilege-details__how-to-join-section,
  .page-vip-club-privilege-details__faq-section,
  .page-vip-club-privilege-details__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-vip-club-privilege-details__hero-title {
    font-size: 1.8em;
  }

  .page-vip-club-privilege-details__section-title {
    font-size: 1.5em;
  }
}