/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  line-height: 1.6;
  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;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, #1a1a2e, #26A9E0); /* Dark gradient for hero */
  overflow: hidden;
}

.page-vip-club__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
  margin-bottom: 30px;
}

.page-vip-club__hero-content {
  position: relative; /* Ensure content is above the image if needed, but not overlaid */
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

.page-vip-club__main-title {
  font-size: clamp(2em, 4.5vw, 3.2em); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-vip-club__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Section titles and descriptions */
.page-vip-club__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em); /* Responsive section title */
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

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

.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: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.page-vip-club__card-image {
  width: 100%;
  max-width: 400px; /* Example max width, actual display size */
  height: auto;
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

/* Levels Section */
.page-vip-club__levels-section {
  padding: 60px 0;
  background-color: #0d0d1e; /* Even darker background */
}

.page-vip-club__levels-chart {
  width: 100%;
  max-width: 1000px; /* Example max width, actual display size */
  height: auto;
  min-height: 200px; /* Ensure minimum size */
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.page-vip-club__level-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-vip-club__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-vip-club__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  text-align: left;
  max-width: 600px;
}

.page-vip-club__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #f0f0f0;
  border-left: 3px solid #26A9E0;
}

.page-vip-club__list-item strong {
  color: #FFFFFF;
}

/* Promotions Section */
.page-vip-club__promotions-section {
  padding: 60px 0;
  background-color: #1a1a2e; /* Dark background */
}

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

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

.page-vip-club__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Service Section */
.page-vip-club__service-section {
  padding: 60px 0;
  background-color: #0d0d1e; /* Even darker background */
}

.page-vip-club__service-image {
  width: 100%;
  max-width: 1000px; /* Example max width, actual display size */
  height: auto;
  min-height: 200px; /* Ensure minimum size */
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.page-vip-club__service-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 60px 0;
  background-color: #1a1a2e; /* Dark background */
}

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

.page-vip-club__faq-item {
  background-color: 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 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-vip-club__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-vip-club__faq-item[open] > .page-vip-club__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-vip-club__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

/* CTA Bottom Section */
.page-vip-club__cta-bottom {
  padding: 60px 0;
  background: linear-gradient(135deg, #26A9E0, #1a1a2e); /* Gradient for CTA */
  text-align: center;
}

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

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

/* General image styling */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block; /* Ensure images are block-level for max-width to work */
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-vip-club__container {
    padding: 0 15px !important;
  }

  .page-vip-club__hero-section,
  .page-vip-club__benefits-section,
  .page-vip-club__levels-section,
  .page-vip-club__promotions-section,
  .page-vip-club__service-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-bottom {
    padding: 30px 0 !important;
  }

  .page-vip-club__hero-image,
  .page-vip-club__levels-chart,
  .page-vip-club__service-image,
  .page-vip-club__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important; /* Enforce min height for content images */
  }

  .page-vip-club__main-title {
    font-size: 2em !important;
  }

  .page-vip-club__section-title {
    font-size: 1.8em !important;
    padding-top: 20px !important;
  }

  .page-vip-club__intro-text,
  .page-vip-club__section-description,
  .page-vip-club__card-text,
  .page-vip-club__list-item,
  .page-vip-club__faq-answer p {
    font-size: 1em !important;
  }

  .page-vip-club__cta-buttons {
    flex-direction: column !important;
    align-items: center;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: calc(100% - 30px) !important; /* Account for container padding */
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__promo-grid {
    grid-template-columns: 1fr !important;
  }

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

  /* Ensure all content containers are responsive */
  .page-vip-club__hero-content,
  .page-vip-club__benefit-card,
  .page-vip-club__level-info,
  .page-vip-club__promo-card,
  .page-vip-club__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}