/* style/vip-club.css */

/* Base Styles */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is 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__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

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

.page-vip-club__highlight {
  color: #FFFF00; /* Custom highlight color */
  font-weight: bold;
}

/* Color Contrast based on Body background #1a1a2e (dark) */
.page-vip-club__dark-bg {
  background-color: #017439; /* Brand main color */
  color: #ffffff;
}

.page-vip-club__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-club__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark sections */
  color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 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: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
}

.page-vip-club__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  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 #ffffff;
  margin-left: 15px;
}

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

.page-vip-club__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
  text-align: center;
}

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

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

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

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

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

/* Introduction Section */
.page-vip-club__introduction-section {
  padding: 80px 0;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
}

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

.page-vip-club__tier-card {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__tier-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-vip-club__tier-benefits li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-vip-club__tier-requirement {
  font-style: italic;
  color: #f0f0f0;
}

/* Privileges Section */
.page-vip-club__privileges-section {
  padding: 80px 0;
}

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

.page-vip-club__privilege-card {
  text-align: center;
  background: #ffffff; /* Card background for light section */
  color: #333333; /* Text color for light card background */
}

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

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

/* Join Section */
.page-vip-club__join-section {
  padding: 80px 0;
}

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
}

.page-vip-club__join-steps li {
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFFF00;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  position: relative;
  padding-left: 60px;
}

.page-vip-club__step-number {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #FFFF00;
  font-size: 1.4em;
}

/* Benefits Summary Section */
.page-vip-club__benefits-summary-section {
  padding: 80px 0;
}

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

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

.page-vip-club__benefit-icon {
  width: 150px; /* Min size 200x200 for content images, but these are conceptual icons. Adjust if needed. */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-height: 200px;
}

.page-vip-club__benefit-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017439;
}

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

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
}

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

.page-vip-club__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

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

.page-vip-club__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

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

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

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

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

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

/* CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-vip-club__cta-section .page-vip-club__btn-primary {
  margin-top: 30px;
}

/* 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 {
    flex-direction: column;
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__hero-content {
    padding: 20px;
    max-width: 100%;
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__btn-primary, .page-vip-club__btn-secondary {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-vip-club__tiers-grid, .page-vip-club__privileges-grid, .page-vip-club__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-vip-club__text-block {
    font-size: 1em;
  }
  .page-vip-club__join-steps li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-vip-club__step-number {
    font-size: 1.2em;
    left: 15px;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
  }
  .page-vip-club__faq-answer {
    padding: 0 15px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 10px 15px 15px;
  }

  /* Image/Video/Button 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-cta-buttons,
  .page-vip-club__tiers-grid,
  .page-vip-club__privileges-grid,
  .page-vip-club__benefits-list,
  .page-vip-club__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-vip-club__hero-image-wrapper {
    position: relative;
    height: 300px;
  }
}

/* Global image size enforcement for content area */
.page-vip-club img {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter on images */
.page-vip-club img {
  filter: none; /* Override any potential filter */
}