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

/* Base styles for the page content */
.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: #1a1a2e; /* Inherited from body or set explicitly */
}

/* Container for content sections */
.page-vip-club-levels-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-vip-club-levels-benefits__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff; /* Default for dark sections */
}

/* Section descriptions */
.page-vip-club-levels-benefits__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Sub-titles within sections */
.page-vip-club-levels-benefits__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #017439; /* Brand color for sub-titles */
}

/* Text blocks for paragraphs */
.page-vip-club-levels-benefits__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #f0f0f0;
}

/* Hero Section */
.page-vip-club-levels-benefits__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Responsive height */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-vip-club-levels-benefits__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 2;
}

.page-vip-club-levels-benefits__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

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

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

/* Buttons */
.page-vip-club-levels-benefits__btn-primary,
.page-vip-club-levels-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent; /* Default transparent border */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
}

.page-vip-club-levels-benefits__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border-color: #C30808;
}

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

.page-vip-club-levels-benefits__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand color */
  border-color: #017439;
}

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

.page-vip-club-levels-benefits__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Section backgrounds and text colors */
.page-vip-club-levels-benefits__dark-bg {
  background-color: #1a1a2e; /* Body background color */
  padding: 80px 0;
  color: #ffffff;
}

.page-vip-club-levels-benefits__light-bg {
  background-color: #FFFFFF;
  padding: 80px 0;
  color: #333333; /* Dark text for light background */
}

.page-vip-club-levels-benefits__text-dark {
  color: #333333;
}

.page-vip-club-levels-benefits__text-block {
  margin-top: 40px;
}

/* Images */
.page-vip-club-levels-benefits__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Benefit Cards Grid */
.page-vip-club-levels-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club-levels-benefits__benefit-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

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

.page-vip-club-levels-benefits__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439; /* Brand color for card titles */
}

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

/* Video Section */
.page-vip-club-levels-benefits__video-section {
  padding: 80px 0;
  background-color: #1a1a2e;
  text-align: center;
}

.page-vip-club-levels-benefits__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-benefits__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer; /* Indicate clickable */
}

.page-vip-club-levels-benefits__video-cta {
  margin-top: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-vip-club-levels-benefits__video-cta a {
  color: #017439; /* Brand color for links */
  text-decoration: underline;
  font-weight: bold;
}

.page-vip-club-levels-benefits__video-cta a:hover {
  color: #02a04e;
}

/* FAQ Section */
.page-vip-club-levels-benefits__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.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;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #333333;
  transition: background-color 0.3s ease;
}

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

.page-vip-club-levels-benefits__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

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

.page-vip-club-levels-benefits__faq-item.active .page-vip-club-levels-benefits__faq-answer {
  max-height: 1000px !important; /* Ensure it expands fully */
  padding: 15px 25px;
}

.page-vip-club-levels-benefits__faq-answer p {
  margin-bottom: 10px;
}

/* Final CTA Section */
.page-vip-club-levels-benefits__cta-final-section {
  padding: 80px 0;
  background-color: #017439; /* Brand color for strong CTA */
  text-align: center;
  color: #FFFFFF;
}

.page-vip-club-levels-benefits__cta-final-section .page-vip-club-levels-benefits__section-title {
  color: #FFFFFF;
}

.page-vip-club-levels-benefits__cta-final-section .page-vip-club-levels-benefits__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club-levels-benefits__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club-levels-benefits__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club-levels-benefits__section-title {
    font-size: 2.2em;
  }
  .page-vip-club-levels-benefits__sub-title {
    font-size: 1.6em;
  }
  .page-vip-club-levels-benefits__card-title {
    font-size: 1.2em;
  }
}

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

  /* Hero Section */
  .page-vip-club-levels-benefits__hero-section {
    height: 60vh;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .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-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-levels-benefits__btn-primary,
  .page-vip-club-levels-benefits__btn-secondary,
  .page-vip-club-levels-benefits a[class*="button"],
  .page-vip-club-levels-benefits 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 !important;
    padding-right: 15px !important;
  }

  /* Sections */
  .page-vip-club-levels-benefits__dark-bg,
  .page-vip-club-levels-benefits__light-bg,
  .page-vip-club-levels-benefits__video-section,
  .page-vip-club-levels-benefits__faq-section,
  .page-vip-club-levels-benefits__cta-final-section {
    padding: 40px 0;
  }

  .page-vip-club-levels-benefits__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-levels-benefits__sub-title {
    font-size: 1.4em;
  }

  /* Images */
  .page-vip-club-levels-benefits img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club-levels-benefits__image {
    margin: 20px auto;
  }

  /* Cards */
  .page-vip-club-levels-benefits__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club-levels-benefits__benefit-card {
    padding: 20px;
  }

  /* Video */
  .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 !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  .page-vip-club-levels-benefits__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* FAQ */
  .page-vip-club-levels-benefits__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .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;
  }
}