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

:root {
  --page-vip-club-levels-privileges-primary-color: #017439;
  --page-vip-club-levels-privileges-secondary-color: #FFFFFF;
  --page-vip-club-levels-privileges-dark-background: #1a1a1a;
  --page-vip-club-levels-privileges-light-background: #f8f8f8;
  --page-vip-club-levels-privileges-text-light: #ffffff;
  --page-vip-club-levels-privileges-text-dark: #333333;
  --page-vip-club-levels-privileges-border-color: #e0e0e0;
}

.page-vip-club-levels-privileges {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-vip-club-levels-privileges-text-light); /* Default text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-vip-club-levels-privileges__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background-color: var(--page-vip-club-levels-privileges-dark-background);
  color: var(--page-vip-club-levels-privileges-text-light);
}

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

.page-vip-club-levels-privileges__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-vip-club-levels-privileges__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-vip-club-levels-privileges-text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-levels-privileges__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--page-vip-club-levels-privileges-text-light);
}

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

.page-vip-club-levels-privileges__btn-primary,
.page-vip-club-levels-privileges__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club-levels-privileges__btn-primary {
  background-color: var(--page-vip-club-levels-privileges-primary-color);
  color: var(--page-vip-club-levels-privileges-secondary-color);
  border: 2px solid var(--page-vip-club-levels-privileges-primary-color);
}

.page-vip-club-levels-privileges__btn-primary:hover {
  background-color: #005a2d; /* Slightly darker green */
  transform: translateY(-2px);
}

.page-vip-club-levels-privileges__btn-secondary {
  background-color: transparent;
  color: var(--page-vip-club-levels-privileges-secondary-color);
  border: 2px solid var(--page-vip-club-levels-privileges-secondary-color);
}

.page-vip-club-levels-privileges__btn-secondary:hover {
  background-color: var(--page-vip-club-levels-privileges-secondary-color);
  color: var(--page-vip-club-levels-privileges-primary-color);
  transform: translateY(-2px);
}

.page-vip-club-levels-privileges__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-vip-club-levels-privileges-primary-color);
}

.page-vip-club-levels-privileges__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Sections */
.page-vip-club-levels-privileges__introduction-section,
.page-vip-club-levels-privileges__privileges-details,
.page-vip-club-levels-privileges__faq-section {
  padding: 60px 0;
  color: var(--page-vip-club-levels-privileges-text-dark);
  background-color: var(--page-vip-club-levels-privileges-light-background);
}

.page-vip-club-levels-privileges__levels-overview,
.page-vip-club-levels-privileges__how-to-join,
.page-vip-club-levels-privileges__cta-bottom-section {
  padding: 60px 0;
  color: var(--page-vip-club-levels-privileges-text-light);
  background-color: var(--page-vip-club-levels-privileges-dark-background);
}

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

.page-vip-club-levels-privileges__card {
  background-color: var(--page-vip-club-levels-privileges-secondary-color);
  color: var(--page-vip-club-levels-privileges-text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-levels-privileges__card:hover {
  transform: translateY(-5px);
}

.page-vip-club-levels-privileges__card-image,
.page-vip-club-levels-privileges__privilege-icon {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-vip-club-levels-privileges__card-image {
  width: 100%; /* Ensure card images fill width */
  height: 200px; /* Fixed height for consistency */
}

.page-vip-club-levels-privileges__privilege-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.page-vip-club-levels-privileges__card-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: var(--page-vip-club-levels-privileges-primary-color);
}

.page-vip-club-levels-privileges__card-text {
  font-size: 1em;
  color: var(--page-vip-club-levels-privileges-text-dark);
  text-align: center;
}

.page-vip-club-levels-privileges__privilege-card {
  background-color: var(--page-vip-club-levels-privileges-secondary-color);
  color: var(--page-vip-club-levels-privileges-text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-vip-club-levels-privileges__privilege-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--page-vip-club-levels-privileges-primary-color);
}

.page-vip-club-levels-privileges__privilege-description {
  font-size: 0.95em;
  color: var(--page-vip-club-levels-privileges-text-dark);
}

.page-vip-club-levels-privileges__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-club-levels-privileges__steps-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--page-vip-club-levels-privileges-primary-color);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--page-vip-club-levels-privileges-text-light);
}

.page-vip-club-levels-privileges__step-title {
  font-size: 1.5em;
  color: var(--page-vip-club-levels-privileges-secondary-color);
  margin-bottom: 10px;
}

/* FAQ Section */
.page-vip-club-levels-privileges__faq-list {
  margin-top: 40px;
}

.page-vip-club-levels-privileges__faq-item {
  background-color: var(--page-vip-club-levels-privileges-secondary-color);
  border: 1px solid var(--page-vip-club-levels-privileges-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club-levels-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-vip-club-levels-privileges-primary-color);
  cursor: pointer;
  background-color: var(--page-vip-club-levels-privileges-secondary-color);
  transition: background-color 0.3s ease;
}

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

.page-vip-club-levels-privileges__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--page-vip-club-levels-privileges-text-dark);
}

.page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-vip-club-levels-privileges__faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-vip-club-levels-privileges__cta-bottom-section {
  padding: 80px 20px;
  text-align: center;
}

.page-vip-club-levels-privileges__cta-content {
  max-width: 800px;
}

.page-vip-club-levels-privileges__large-btn {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .page-vip-club-levels-privileges {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club-levels-privileges__hero-section {
    min-height: 500px;
    padding: 60px 15px;
    text-align: left;
    justify-content: flex-start;
  }

  .page-vip-club-levels-privileges__hero-content {
    text-align: center;
  }

  .page-vip-club-levels-privileges__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-vip-club-levels-privileges__btn-primary,
  .page-vip-club-levels-privileges__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-vip-club-levels-privileges__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-vip-club-levels-privileges__text-block {
    font-size: 1em;
    text-align: left;
  }

  .page-vip-club-levels-privileges__levels-grid,
  .page-vip-club-levels-privileges__privileges-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club-levels-privileges__card,
  .page-vip-club-levels-privileges__privilege-card {
    padding: 20px;
  }

  .page-vip-club-levels-privileges__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-vip-club-levels-privileges__faq-answer {
    padding: 0 20px;
  }

  .page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-answer {
    padding: 10px 20px;
  }

  .page-vip-club-levels-privileges__container,
  .page-vip-club-levels-privileges__section,
  .page-vip-club-levels-privileges__card,
  .page-vip-club-levels-privileges__privilege-card,
  .page-vip-club-levels-privileges__faq-item,
  .page-vip-club-levels-privileges__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile image responsiveness */
  .page-vip-club-levels-privileges img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile video responsiveness (if any) */
  .page-vip-club-levels-privileges video,
  .page-vip-club-levels-privileges__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club-levels-privileges__video-section,
  .page-vip-club-levels-privileges__video-container,
  .page-vip-club-levels-privileges__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-club-levels-privileges__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}