/* style/vip-club.css */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by 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: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-vip-club__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-vip-club__text-link {
  color: #FFFF00;
  text-decoration: underline;
}

.page-vip-club__note-text {
  font-style: italic;
  font-size: 0.95em;
  color: #cccccc;
  margin-top: 40px;
}

/* 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;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  overflow: hidden;
}

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

.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: 2;
}

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

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

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

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

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: center;
}

.page-vip-club__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

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

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

.page-vip-club__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

/* Section Styling */
.page-vip-club__intro-section,
.page-vip-club__privileges-section,
.page-vip-club__faq-section {
  padding: 80px 0;
}

.page-vip-club__tiers-section,
.page-vip-club__join-section,
.page-vip-club__cta-final-section {
  padding: 80px 0;
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
}

.page-vip-club__dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-vip-club__light-bg {
  background-color: #333333; /* Darker card background for light text */
  color: #ffffff;
}

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

.page-vip-club__tier-card {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 450px;
  border: 1px solid #017439;
}

.page-vip-club__tier-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

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

.page-vip-club__tier-benefits li::before {
  content: '✓';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__tier-requirement {
  font-size: 0.95em;
  color: #ccc;
  font-style: italic;
}

/* Privileges Section */
.page-vip-club__privilege-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__privilege-card {
  background-color: #333333;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #017439;
}

.page-vip-club__privilege-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-club__privilege-title {
  font-size: 1.6em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__privilege-description {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-vip-club__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-vip-club__step-card {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #017439;
}

.page-vip-club__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #017439;
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-vip-club__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-vip-club__faq-list {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__faq-item {
  background-color: #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #017439;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFF00;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: #017439;
}

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

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

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  line-height: 1.6;
}

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

.page-vip-club__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
  padding: 80px 0;
  background-color: #017439;
  text-align: center;
}

.page-vip-club__cta-final-section .page-vip-club__section-title {
  color: #FFFF00;
}

.page-vip-club__cta-final-section .page-vip-club__section-text {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-final-section .page-vip-club__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* 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;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: auto;
    min-height: 70vh;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    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__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-vip-club__section-text {
    font-size: 0.95em;
  }
  .page-vip-club__intro-section,
  .page-vip-club__tiers-section,
  .page-vip-club__privileges-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section {
    padding: 50px 0;
  }

  .page-vip-club__container {
    padding: 0 15px;
  }

  /* Image and Video Responsive */
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__hero-section,
  .page-vip-club__tier-card,
  .page-vip-club__privilege-card,
  .page-vip-club__step-card,
  .page-vip-club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-vip-club__tier-card, .page-vip-club__privilege-card, .page-vip-club__step-card {
    margin-bottom: 20px;
  }

  .page-vip-club__cta-final-section .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

@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__btn-primary,
  .page-vip-club__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-vip-club__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-vip-club__faq-answer {
    padding: 0 15px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 10px 15px 15px 15px;
  }
}