/* style/vip-club-benefits.css */
/* 
  BEM Naming Convention: .page-vip-club-benefits__element-name
  Color Scheme: Main #26A9E0, Auxiliary #FFFFFF. Login #EA7C07. Body background #0a0a0a (dark).
  Text Color on dark background should be #FFFFFF.
  WCAG AA contrast (4.5:1) is mandatory.
  No CSS filter properties for images.
*/

.page-vip-club-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Main text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-vip-club-benefits__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

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

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

.page-vip-club-benefits__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-vip-club-benefits__hero-cta-button {
  display: inline-block;
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid #26A9E0;
}

.page-vip-club-benefits__hero-cta-button:hover {
  background-color: #1a7fb3; /* Darker shade for hover */
  border-color: #1a7fb3;
}

/* General Section Styling */
.page-vip-club-benefits__section {
  padding: 60px 20px;
  text-align: center;
}

.page-vip-club-benefits__introduction {
  background-color: #0a0a0a; /* Dark background matching body */
}

.page-vip-club-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-vip-club-benefits__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #26A9E0; /* Highlight with brand color */
}

.page-vip-club-benefits__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark background */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Detailed Benefits Grid */
.page-vip-club-benefits__detailed-benefits {
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-vip-club-benefits__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-vip-club-benefits__benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club-benefits__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club-benefits__card-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  flex-grow: 0; /* Don't grow */
}

.page-vip-club-benefits__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1; /* Allow text to grow and push CTA down */
}

/* How to Join Section */
.page-vip-club-benefits__how-to-join {
  background-color: #0a0a0a; /* Dark background matching body */
}

.page-vip-club-benefits__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-vip-club-benefits__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-vip-club-benefits__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-vip-club-benefits__step-content {
  flex-grow: 1;
}

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

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

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

.page-vip-club-benefits__step-description a:hover {
  color: #1a7fb3;
}

/* Call to Action Section */
.page-vip-club-benefits__cta-section {
  background-color: #26A9E0; /* Brand color background */
  color: #ffffff;
  padding: 80px 20px;
}

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

.page-vip-club-benefits__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

.page-vip-club-benefits__btn-primary,
.page-vip-club-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding is included in width */
}

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

.page-vip-club-benefits__btn-primary:hover {
  background-color: #f0f0f0;
  color: #1a7fb3;
}

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

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

/* FAQ Section */
.page-vip-club-benefits__faq {
  background-color: #0a0a0a; /* Dark background matching body */
}

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

.page-vip-club-benefits__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-vip-club-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-vip-club-benefits__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club-benefits__faq-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.page-vip-club-benefits__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
  line-height: 1; /* Prevent extra line height from pushing content */
}

.page-vip-club-benefits__faq-item.active .page-vip-club-benefits__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X or just a dash */
}

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

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

.page-vip-club-benefits__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-benefits__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club-benefits__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-benefits__section-title {
    font-size: 2em;
  }
  .page-vip-club-benefits__card-title {
    font-size: 1.4em;
  }
  .page-vip-club-benefits__step-title {
    font-size: 1.5em;
  }
  .page-vip-club-benefits__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-benefits__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-vip-club-benefits__hero-title {
    font-size: 2em;
  }
  .page-vip-club-benefits__hero-description {
    font-size: 1em;
  }
  .page-vip-club-benefits__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-club-benefits__section {
    padding: 40px 15px;
  }
  .page-vip-club-benefits__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-benefits__section-text {
    font-size: 0.95em;
  }
}