/* style/vip-club-levels-benefits.css */
.page-vip-club-levels-benefits {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Ensure this matches shared.css body background */
}

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

/* Hero Section */
.page-vip-club-levels-benefits__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  text-align: center;
  overflow: hidden;
  background-color: #003366; /* Main brand color */
}

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

.page-vip-club-levels-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay to ensure text readability */
}

.page-vip-club-levels-benefits__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

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

.page-vip-club-levels-benefits__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
}

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

/* General Section Styling */
.page-vip-club-levels-benefits__intro-section,
.page-vip-club-levels-benefits__levels-section,
.page-vip-club-levels-benefits__benefits-section,
.page-vip-club-levels-benefits__how-to-join-section,
.page-vip-club-levels-benefits__faq-section {
  padding: 80px 0;
}

.page-vip-club-levels-benefits__dark-bg {
  background-color: #003366;
  color: #ffffff;
}

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

.page-vip-club-levels-benefits__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFCC00; /* Accent color for section titles on dark backgrounds */
}

.page-vip-club-levels-benefits__light-bg .page-vip-club-levels-benefits__section-title {
  color: #003366; /* Main brand color for section titles on light backgrounds */
}

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

/* Buttons */
.page-vip-club-levels-benefits__btn-primary,
.page-vip-club-levels-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  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;
  box-sizing: border-box;
  text-align: center;
}

.page-vip-club-levels-benefits__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-vip-club-levels-benefits__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-vip-club-levels-benefits__btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-vip-club-levels-benefits__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-vip-club-levels-benefits__cta-container {
  text-align: center;
  margin-top: 50px;
}

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

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

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

.page-vip-club-levels-benefits__level-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-vip-club-levels-benefits__level-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-vip-club-levels-benefits__level-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club-levels-benefits__level-requirements li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #ffffff;
}

.page-vip-club-levels-benefits__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

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

.page-vip-club-levels-benefits__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333; /* Dark text for light background */
}

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

.page-vip-club-levels-benefits__benefit-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

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

/* How to Join Section */
.page-vip-club-levels-benefits__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-club-levels-benefits__steps-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club-levels-benefits__step-title {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-vip-club-levels-benefits__step-description {
  font-size: 1.1em;
  color: #ffffff;
}

.page-vip-club-levels-benefits__step-description a {
  color: #FFCC00;
  text-decoration: underline;
}

.page-vip-club-levels-benefits__step-description a:hover {
  color: #e6b800;
}

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

.page-vip-club-levels-benefits__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-vip-club-levels-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #003366;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-vip-club-levels-benefits__faq-question:hover {
  background-color: #e5e5e5;
}

.page-vip-club-levels-benefits__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

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

.page-vip-club-levels-benefits__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #ffffff;
}

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

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

/* Responsive Design */
/* Mobile first approach, then override for larger screens */
@media (max-width: 768px) {
  .page-vip-club-levels-benefits {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-vip-club-levels-benefits__hero-section {
    min-height: 500px;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

  .page-vip-club-levels-benefits__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-vip-club-levels-benefits__btn-primary,
  .page-vip-club-levels-benefits__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-vip-club-levels-benefits__container,
  .page-vip-club-levels-benefits__section,
  .page-vip-club-levels-benefits__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club-levels-benefits__intro-section,
  .page-vip-club-levels-benefits__levels-section,
  .page-vip-club-levels-benefits__benefits-section,
  .page-vip-club-levels-benefits__how-to-join-section,
  .page-vip-club-levels-benefits__faq-section {
    padding: 60px 0;
  }

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

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

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

  .page-vip-club-levels-benefits__level-icon {
    width: 200px;
    height: auto;
    object-fit: cover;
  }

  .page-vip-club-levels-benefits__level-title {
    font-size: 1.5em;
  }

  .page-vip-club-levels-benefits__level-requirements li {
    font-size: 0.95em;
  }

  .page-vip-club-levels-benefits__benefit-title {
    font-size: 1.3em;
  }

  .page-vip-club-levels-benefits__step-title {
    font-size: 1.3em;
  }

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

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

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

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

  /* Image responsiveness for all images in content area */
  .page-vip-club-levels-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness for all videos in content area */
  .page-vip-club-levels-benefits video,
  .page-vip-club-levels-benefits__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club-levels-benefits__video-section,
  .page-vip-club-levels-benefits__video-container,
  .page-vip-club-levels-benefits__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

/* Desktop specific styles for larger elements, ensuring min-width for images */
@media (min-width: 769px) {
  .page-vip-club-levels-benefits__level-icon {
    min-width: 200px; /* Enforce minimum size for desktop */
    min-height: 200px;
  }
  .page-vip-club-levels-benefits img {
    min-width: 200px;
    min-height: 200px;
  }
}