/* style/promotions-vip-club.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-promotions-vip-club {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions-vip-club__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  background-color: #1a1a2e; /* Dark background for hero section */
}

.page-promotions-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for image container */
  margin-bottom: 30px;
}

.page-promotions-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-promotions-vip-club__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-vip-club__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
  font-weight: 700;
  color: #26A9E0; /* Brand primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-vip-club__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

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

.page-promotions-vip-club__btn-primary,
.page-promotions-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

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

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

.page-promotions-vip-club__btn-secondary {
  background-color: transparent;
  color: #26A9E0; /* Primary brand color for text */
  border: 2px solid #26A9E0;
}

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

.page-promotions-vip-club__content-area,
.page-promotions-vip-club__how-to-join,
.page-promotions-vip-club__comparison-section,
.page-promotions-vip-club__faq-section,
.page-promotions-vip-club__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-promotions-vip-club__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

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

.page-promotions-vip-club__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: inherit; /* Inherit color from parent section */
}

.page-promotions-vip-club__dark-bg .page-promotions-vip-club__section-title {
  color: #26A9E0; /* Brand color on dark background */
}

.page-promotions-vip-club__light-bg .page-promotions-vip-club__section-title {
  color: #1a1a2e; /* Darker color on light background */
}

.page-promotions-vip-club__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

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

.page-promotions-vip-club__card {
  background-color: #ffffff; /* Default light background for cards */
  color: #333333; /* Dark text for cards */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-vip-club__dark-bg .page-promotions-vip-club__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-club__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-promotions-vip-club__dark-bg .page-promotions-vip-club__card-title {
  color: #26A9E0;
}

.page-promotions-vip-club__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-vip-club__card-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1em;
  color: inherit;
}

.page-promotions-vip-club__card-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions-vip-club__comparison-card {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

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

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

.page-promotions-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #26A9E0; /* Brand color for question */
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-promotions-vip-club__faq-item[open] > .page-promotions-vip-club__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.page-promotions-vip-club__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-promotions-vip-club__cta-section {
  text-align: center;
  padding: 80px 20px;
}

.page-promotions-vip-club__cta-button {
  margin-top: 40px;
  font-size: 1.2em;
  padding: 18px 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip-club__hero-section {
    padding: 40px 15px;
  }
  .page-promotions-vip-club__main-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
  .page-promotions-vip-club__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-club__content-area,
  .page-promotions-vip-club__how-to-join,
  .page-promotions-vip-club__comparison-section,
  .page-promotions-vip-club__faq-section,
  .page-promotions-vip-club__cta-section {
    padding: 40px 15px;
  }
  .page-promotions-vip-club__benefits-grid,
  .page-promotions-vip-club__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Images responsiveness */
  .page-promotions-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-vip-club__hero-image-wrapper,
  .page-promotions-vip-club__benefit-card,
  .page-promotions-vip-club__step-card,
  .page-promotions-vip-club__comparison-card,
  .page-promotions-vip-club__faq-list,
  .page-promotions-vip-club__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsiveness */
  .page-promotions-vip-club__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
  }
  .page-promotions-vip-club__btn-primary,
  .page-promotions-vip-club__btn-secondary,
  .page-promotions-vip-club__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
  }

  .page-promotions-vip-club__main-title {
    font-size: clamp(1.5em, 6vw, 2em); /* Adjust for smaller screens */
  }
  .page-promotions-vip-club__description {
    font-size: 1em;
  }
  .page-promotions-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-club__text-block {
    font-size: 0.95em;
  }
  .page-promotions-vip-club__card-title {
    font-size: 1.3em;
  }
  .page-promotions-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-vip-club__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-club__hero-section {
    padding: 30px 10px;
  }
  .page-promotions-vip-club__content-area,
  .page-promotions-vip-club__how-to-join,
  .page-promotions-vip-club__comparison-section,
  .page-promotions-vip-club__faq-section,
  .page-promotions-vip-club__cta-section {
    padding: 30px 10px;
  }
  .page-promotions-vip-club__main-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }
  .page-promotions-vip-club__section-title {
    font-size: 1.6em;
  }
}