/* style/vip-program.css */

/* Base styles for the VIP program page */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-vip-program__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-program__text-block {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-vip-program__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-vip-program__hero-content {
  text-align: center;
  max-width: 900px;
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 1;
}

.page-vip-program__main-title {
  font-size: clamp(32px, 4.5vw, 56px); /* Using clamp for responsive H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.page-vip-program__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-vip-program__cta-button--large {
  padding: 18px 35px;
  font-size: 22px;
}

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

/* Benefits Section */
.page-vip-program__benefits-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-vip-program__benefit-card {
  background-color: #0A4B2C; /* Deep Green for card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-program__benefit-icon {
  width: 100%;
  max-width: 150px; /* Smaller icon size visually, but image itself is 400x300 */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-program__benefit-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__benefit-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-vip-program__tier-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-program__tier-icon {
  width: 100%;
  max-width: 120px; /* Smaller icon size visually, but image itself is 300x300 */
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #F2C14E; /* Gold */
  object-fit: cover;
}

.page-vip-program__tier-title {
  font-size: 26px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__tier-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* How to Join Section */
.page-vip-program__how-to-join-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

.page-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-vip-program__step-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #2AD16F;
}

.page-vip-program__step-title {
  font-size: 22px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-program__step-description {
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program__step-description a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program__step-description a:hover {
  text-decoration: underline;
}

.page-vip-program__join-cta {
  text-align: center;
  margin-top: 50px;
}

.page-vip-program__join-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-vip-program__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-vip-program__faq-item summary {
  list-style: none;
  outline: none;
  cursor: pointer;
}

.page-vip-program__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-vip-program__faq-item[open] .page-vip-program__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-program__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-program__faq-toggle {
  font-size: 28px;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-vip-program__faq-answer {
  padding: 20px 25px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

/* Final CTA Section */
.page-vip-program__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-program__hero-image-wrapper {
    max-height: 500px;
  }
  .page-vip-program__benefits-grid, .page-vip-program__tiers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-program {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-vip-program__section-title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .page-vip-program__main-title {
    font-size: clamp(28px, 6vw, 48px);
  }

  .page-vip-program__hero-description {
    font-size: 18px;
  }

  .page-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-program__cta-button--large {
    padding: 15px 30px;
    font-size: 20px;
  }

  .page-vip-program__hero-image-wrapper {
    max-height: 400px;
  }

  .page-vip-program__benefits-grid, .page-vip-program__tiers-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-program__benefit-card, .page-vip-program__tier-card {
    padding: 25px;
  }

  .page-vip-program__benefit-title {
    font-size: 22px;
  }

  .page-vip-program__tier-title {
    font-size: 24px;
  }

  .page-vip-program__step-item {
    padding: 20px;
  }

  .page-vip-program__step-title {
    font-size: 20px;
  }

  .page-vip-program__faq-question {
    font-size: 18px;
    padding: 18px 20px;
  }

  .page-vip-program__faq-answer {
    font-size: 16px;
    padding: 18px 20px;
  }

  /* Force images to be responsive */
  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-program__section,
  .page-vip-program__card,
  .page-vip-program__container,
  .page-vip-program__benefits-grid,
  .page-vip-program__tiers-grid,
  .page-vip-program__faq-list,
  .page-vip-program__join-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-vip-program__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    padding-left: 0;
    padding-right: 0;
  }
  .page-vip-program__hero-image-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-program__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Color Contrast Fixes (if needed) - applied based on body background being dark */
/* All text elements are set to light colors on dark backgrounds as per custom palette */

/* No CSS filter for images */
.page-vip-program img {
  filter: none;
}