/* style/vip-club.css */

/* --- Base Styles --- */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Inherit from body, which is #0a0a0a from shared.css */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-vip-club__dark-bg {
  background-color: #0a0a0a; /* Ensure dark background for sections */
  color: #ffffff;
  padding: 80px 0;
}

.page-vip-club__cta-center {
  text-align: center;
}

/* --- Buttons --- */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-vip-club__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 10px;
}

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

.page-vip-club__btn-small {
  padding: 8px 20px;
  font-size: 0.9em;
  margin: 5px;
}

.page-vip-club__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Hero Section --- */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

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

.page-vip-club__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: -1;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-vip-club__hero-title {
  font-size: 3.8em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

/* --- Benefits Section --- */
.page-vip-club__benefits-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
}

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

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

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
}

.page-vip-club__benefit-icon {
  width: 100%; /* Ensure image fills card width */
  height: auto;
  max-height: 200px; /* Limit height to prevent overly tall images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__benefit-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* --- Tiers Section --- */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-vip-club__tier-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__tier-image {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-vip-club__tier-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  flex-grow: 1;
}

.page-vip-club__tier-benefits li {
  margin-bottom: 10px;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__tier-benefits li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #26A9E0;
}

/* --- How to Join Section --- */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
}

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

.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

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

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-club__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-vip-club__step-text a:hover {
  text-decoration: underline;
}

/* --- FAQ Section --- */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-question::-webkit-details-marker,
.page-vip-club__faq-question::marker {
  display: none;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-vip-club__faq-answer p {
  margin: 0;
}

/* --- CTA Section --- */
.page-vip-club__cta-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__section-description {
    font-size: 1em;
  }
}

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

  /* --- Fixed Header Offset for mobile --- */
  .page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    height: auto;
    min-height: 60vh;
  }

  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.95em;
  }

  /* --- Images, Videos, Buttons Mobile Adaption --- */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club video,
  .page-vip-club__video { /* In case a video is added later */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__video-section,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper,
  .page-vip-club__cta-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important; /* Stack buttons vertically */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__cta-buttons {
    flex-direction: column; /* Stack buttons */
    gap: 10px;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr; /* Single column layout */
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
.page-vip-club__step-card {
    padding: 20px;
  }

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

  .page-vip-club__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__benefit-title,
  .page-vip-club__tier-title,
  .page-vip-club__step-title {
    font-size: 1.3em;
  }
}

/* Contrast Fixes (as per instructions, though body is dark so light text is default) */
/* These classes are for specific elements that might override the default dark background and need adjustment */
.page-vip-club__text-contrast-fix {
  color: #ffffff !important; /* Ensure light text on dark background */
  text-shadow: none !important;
}

/* Ensure all links within content areas have good contrast */
.page-vip-club p a,
.page-vip-club li a {
  color: #26A9E0; /* Brand blue */
  text-decoration: underline;
}

.page-vip-club p a:hover,
.page-vip-club li a:hover {
  color: #1e87b7;
}

/* Specific color for login as per custom colors */
.page-vip-club__btn-login {
  background-color: #EA7C07;
  border-color: #EA7C07;
  color: #ffffff;
}
.page-vip-club__btn-login:hover {
  background-color: #c46807;
  border-color: #c46807;
}