/* style/vip-program-levels-privileges.css */

/* Base Styles */
.page-vip-program-levels-privileges {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-vip-program-levels-privileges__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-vip-program-levels-privileges__text-block {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-vip-program-levels-privileges__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Minimal top padding, body handles header offset */
  background-color: #08160F;
  overflow: hidden;
}

.page-vip-program-levels-privileges__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-program-levels-privileges__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-vip-program-levels-privileges__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(8, 22, 15, 0.8); /* Background color with transparency */
  border-radius: 10px;
  padding-top: 120px; /* Adjust padding to make space for negative margin */
}

.page-vip-program-levels-privileges__main-title {
  font-size: 3em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-program-levels-privileges__subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-vip-program-levels-privileges__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program-levels-privileges__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Introduction Section */
.page-vip-program-levels-privileges__introduction {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

/* Levels Overview Section */
.page-vip-program-levels-privileges__levels-overview {
  padding: 80px 0;
  background-color: #08160F;
}

.page-vip-program-levels-privileges__image-card {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels-privileges__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-vip-program-levels-privileges__image-caption {
  padding: 15px;
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
}

/* Privileges Details Section */
.page-vip-program-levels-privileges__privileges-details {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-vip-program-levels-privileges__level-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-program-levels-privileges__level-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

/* How to Join Section */
.page-vip-program-levels-privileges__how-to-join {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

/* Exclusive Events Section */
.page-vip-program-levels-privileges__exclusive-events {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

/* FAQ Section */
.page-vip-program-levels-privileges__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-vip-program-levels-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* For details/summary */
}

.page-vip-program-levels-privileges__faq-question::-webkit-details-marker, /* For Webkit browsers */
.page-vip-program-levels-privileges__faq-question::marker { /* Standard */
  display: none;
}

.page-vip-program-levels-privileges__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Gold */
}

.page-vip-program-levels-privileges__faq-item[open] .page-vip-program-levels-privileges__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-program-levels-privileges__faq-answer {
  padding: 20px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* CTA Section */
.page-vip-program-levels-privileges__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1E3A2A; /* Divider */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-program-levels-privileges__hero-content {
    margin-top: -80px;
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels-privileges__main-title {
    font-size: 2.2em;
  }

  .page-vip-program-levels-privileges__subtitle {
    font-size: 1em;
  }

  .page-vip-program-levels-privileges__section-title {
    font-size: 2em;
  }

  .page-vip-program-levels-privileges__hero-content {
    margin-top: -60px;
    padding-top: 80px;
  }

  .page-vip-program-levels-privileges__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image responsiveness */
  .page-vip-program-levels-privileges img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-program-levels-privileges__hero-image-wrapper,
  .page-vip-program-levels-privileges__image-card,
  .page-vip-program-levels-privileges__section,
  .page-vip-program-levels-privileges__card,
  .page-vip-program-levels-privileges__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-vip-program-levels-privileges__btn-primary,
  .page-vip-program-levels-privileges a[class*="button"],
  .page-vip-program-levels-privileges 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;
    text-align: center;
  }

  .page-vip-program-levels-privileges__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-vip-program-levels-privileges__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}