/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Inherit from body or shared, ensuring text contrast */
}

/* Ensure content area respects header offset */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

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

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

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

.page-vip-club__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Light text for general content on dark sections */
}

/* Links within text blocks */
.page-vip-club__text-block a,
.page-vip-club__step-description a,
.page-vip-club__faq-answer a {
  color: #26A9E0; /* Brand color for links */
  text-decoration: underline;
}

.page-vip-club__text-block a:hover,
.page-vip-club__step-description a:hover,
.page-vip-club__faq-answer a:hover {
  color: #1a7fb0;
}

/* Buttons */
.page-vip-club__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-vip-club__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

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

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

/* Sections */
.page-vip-club__intro-section,
.page-vip-club__tiers-section,
.page-vip-club__exclusive-events-section,
.page-vip-club__video-section {
  padding: 80px 0;
}

.page-vip-club__benefits-section,
.page-vip-club__how-to-join-section,
.page-vip-club__faq-section,
.page-vip-club__final-cta-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-vip-club__benefits-section .page-vip-club__section-title,
.page-vip-club__how-to-join-section .page-vip-club__section-title,
.page-vip-club__faq-section .page-vip-club__section-title,
.page-vip-club__final-cta-section .page-vip-club__section-title {
  color: #26A9E0; /* Brand color */
}

.page-vip-club__benefits-section .page-vip-club__text-block,
.page-vip-club__how-to-join-section .page-vip-club__text-block,
.page-vip-club__faq-section .page-vip-club__text-block,
.page-vip-club__final-cta-section .page-vip-club__text-block {
  color: #333333; /* Dark text */
}

.page-vip-club__dark-section {
  background-color: #1a1a1a; /* Darker background for contrast with light sections */
  color: #ffffff;
}

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

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

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

.page-vip-club__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Adjust size as needed */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

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

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

.page-vip-club__tier-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

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

.page-vip-club__tier-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-vip-club__tier-features li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

/* How to Join Steps */
.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-vip-club__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

.page-vip-club__cta-area {
  text-align: center;
  margin-top: 60px;
}

.page-vip-club__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #333333;
}

/* Exclusive Events */
.page-vip-club__event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__event-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.page-vip-club__event-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-vip-club__event-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-club__event-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-vip-club__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-vip-club__faq-item {
  background-color: #ffffff; /* Light background for FAQ items */
  color: #333333; /* Dark text for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #26A9E0;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* Remove default marker for details summary */
}

.page-vip-club__faq-question::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-vip-club__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  transform: rotate(45deg); /* Rotate + to become x or - */
}

.page-vip-club__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-vip-club__faq-answer p {
  margin-bottom: 10px;
}

/* Video Section */
.page-vip-club__video-section {
  text-align: center;
}

.page-vip-club__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px; /* Max width for video */
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-vip-club__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  cursor: pointer; /* Indicate it's clickable */
}

/* Final CTA Section */
.page-vip-club__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Image specific styles */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    min-height: 450px;
  }
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__text-block,
  .page-vip-club__benefit-description,
  .page-vip-club__tier-description,
  .page-vip-club__tier-features li,
  .page-vip-club__step-description,
  .page-vip-club__event-description,
  .page-vip-club__faq-question,
  .page-vip-club__faq-answer {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Mobile specific padding for containers */
  .page-vip-club__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Force image, video, button responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-vip-club video,
  .page-vip-club__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club__video-section,
  .page-vip-club__video-container,
  .page-vip-club__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__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;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .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;
    flex-direction: column !important;
    gap: 15px;
  }

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-vip-club__benefit-icon,
  .page-vip-club__event-image {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-vip-club__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
}