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

/* Base styles for the page content, considering dark body background */
.page-vip-club-levels {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Main content background will be handled by sections */
}

/* Fixed header spacing - body already handles padding-top */
/* Page sections should only have small decorative top padding */
.page-vip-club-levels__hero-section,
.page-vip-club-levels__introduction-section,
.page-vip-club-levels__levels-overview,
.page-vip-club-levels__how-to-join-section,
.page-vip-club-levels__exclusive-promotions,
.page-vip-club-levels__faq-section,
.page-vip-club-levels__cta-section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

.page-vip-club-levels__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #017439; /* Brand color for hero section background */
  color: #ffffff;
}

.page-vip-club-levels__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-vip-club-levels__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-vip-club-levels__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-vip-club-levels__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-vip-club-levels__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club-levels__btn-primary,
.page-vip-club-levels__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-vip-club-levels__btn-primary:hover {
  background-color: #e02a2a;
  color: #ffffff;
}

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

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

.page-vip-club-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Added padding for smaller screens */
  box-sizing: border-box;
}

.page-vip-club-levels__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #017439; /* Brand color for main titles */
}

.page-vip-club-levels__introduction-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
  padding-bottom: 60px;
}

.page-vip-club-levels__introduction-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-vip-club-levels__introduction-section .highlight-keyword {
  color: #017439;
  font-weight: bold;
}

.page-vip-club-levels__image-full {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-vip-club-levels__levels-overview {
  background-color: #017439; /* Dark brand color background */
  color: #ffffff; /* Light text */
  padding-bottom: 60px;
}

.page-vip-club-levels__levels-overview .page-vip-club-levels__section-title {
  color: #ffffff; /* Title color for dark section */
}

.page-vip-club-levels__levels-overview p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.page-vip-club-levels__levels-overview .highlight-keyword {
  color: #FFFF00;
  font-weight: bold;
}

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

.page-vip-club-levels__level-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-vip-club-levels__level-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFF00; /* Highlight color for VIP titles */
}

.page-vip-club-levels__level-card p {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1; /* Make paragraphs take available space */
}

.page-vip-club-levels__level-card ul {
  list-style: none;
  padding: 0;
  margin-top: auto; /* Push list to bottom */
  text-align: left;
  width: 100%;
}

.page-vip-club-levels__level-card li {
  margin-bottom: 10px;
  font-size: 0.95em;
  position: relative;
  padding-left: 25px;
  color: #f0f0f0;
}

.page-vip-club-levels__level-card li::before {
  content: '✓';
  color: #FFFF00; /* Checkmark color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club-levels__how-to-join-section {
  background-color: #ffffff;
  color: #333333;
  padding-bottom: 60px;
}

.page-vip-club-levels__how-to-join-section p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-vip-club-levels__how-to-join-section .highlight-keyword {
  color: #017439;
  font-weight: bold;
}

.page-vip-club-levels__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-vip-club-levels__step-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-vip-club-levels__step-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #017439;
}

.page-vip-club-levels__step-card p {
  font-size: 0.95em;
  margin-bottom: 0;
}

.page-vip-club-levels__step-card a {
  color: #017439;
  text-decoration: underline;
  font-weight: bold;
}

.page-vip-club-levels__exclusive-promotions {
  background-color: #f5f5f5;
  color: #333333;
  padding-bottom: 60px;
}

.page-vip-club-levels__exclusive-promotions p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-vip-club-levels__exclusive-promotions .highlight-keyword {
  color: #017439;
  font-weight: bold;
}

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

.page-vip-club-levels__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-vip-club-levels__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-height: 200px; /* Minimum size requirement */
}

.page-vip-club-levels__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #017439;
}

.page-vip-club-levels__promo-card p {
  font-size: 0.95em;
  margin: 0 15px 20px;
  flex-grow: 1;
}

.page-vip-club-levels__promo-card .page-vip-club-levels__btn-secondary {
  margin: 0 15px 20px;
  align-self: center;
}

.page-vip-club-levels__call-to-action-text {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #017439;
}

.page-vip-club-levels__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-vip-club-levels__faq-section {
  background-color: #017439; /* Dark brand color background */
  color: #ffffff; /* Light text */
  padding-bottom: 60px;
}

.page-vip-club-levels__faq-section .page-vip-club-levels__section-title {
  color: #ffffff;
}

.page-vip-club-levels__faq-section .highlight-keyword {
  color: #FFFF00;
  font-weight: bold;
}

.page-vip-club-levels__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-vip-club-levels__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-club-levels__faq-item details > summary {
  list-style: none;
}
.page-vip-club-levels__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-vip-club-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  color: #ffffff;
}

.page-vip-club-levels__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-vip-club-levels__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFFF00; /* Highlight color */
}

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

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

.page-vip-club-levels__cta-section {
  background-color: #ffffff;
  color: #333333;
  text-align: center;
  padding-bottom: 60px;
}

.page-vip-club-levels__cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-vip-club-levels__cta-section .highlight-keyword {
  color: #017439;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-club-levels__hero-content {
    padding: 0 15px;
  }
  .page-vip-club-levels__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-vip-club-levels__section-title {
    font-size: 2em;
  }
  .page-vip-club-levels__level-grid,
  .page-vip-club-levels__process-steps,
  .page-vip-club-levels__promo-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club-levels__hero-section,
  .page-vip-club-levels__introduction-section,
  .page-vip-club-levels__levels-overview,
  .page-vip-club-levels__how-to-join-section,
  .page-vip-club-levels__exclusive-promotions,
  .page-vip-club-levels__faq-section,
  .page-vip-club-levels__cta-section {
    padding: 30px 15px;
  }

  .page-vip-club-levels__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-vip-club-levels__description {
    font-size: 1em;
  }

  .page-vip-club-levels__section-title {
    font-size: 1.8em;
  }

  /* Mobile image responsiveness */
  .page-vip-club-levels img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile container responsiveness */
  .page-vip-club-levels__section,
  .page-vip-club-levels__card,
  .page-vip-club-levels__container,
  .page-vip-club-levels__hero-section,
  .page-vip-club-levels__introduction-section,
  .page-vip-club-levels__levels-overview,
  .page-vip-club-levels__how-to-join-section,
  .page-vip-club-levels__exclusive-promotions,
  .page-vip-club-levels__faq-section,
  .page-vip-club-levels__cta-section,
  .page-vip-club-levels__level-card,
  .page-vip-club-levels__step-card,
  .page-vip-club-levels__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Video section top padding (if video exists, ensure small padding) */
  /* .page-vip-club-levels__video-section { padding-top: 10px !important; } */

  /* Mobile button responsiveness */
  .page-vip-club-levels__cta-button,
  .page-vip-club-levels__btn-primary,
  .page-vip-club-levels__btn-secondary,
  .page-vip-club-levels a[class*="button"],
  .page-vip-club-levels 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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }
  
  .page-vip-club-levels__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club-levels__level-grid,
  .page-vip-club-levels__process-steps,
  .page-vip-club-levels__promo-cards {
    grid-template-columns: 1fr;
  }

  .page-vip-club-levels__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-vip-club-levels__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-levels__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-vip-club-levels__section-title {
    font-size: 1.5em;
  }
}