/* style/vip-club.css */

/* Base styles for VIP Club page */
.page-vip-club {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-vip-club__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club__dark-section {
  background-color: #11271B; /* Card BG */
}

.page-vip-club__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club__section-description {
  font-size: 18px;
  color: #F2FFF6; /* Text Main */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-vip-club__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
}

.page-vip-club__image--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F;
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-top: 0;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency for contrast */
  border-radius: 12px;
  margin-top: -80px; /* Overlap image slightly for design effect, but not text on image */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-vip-club__hero-description {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-vip-club__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-vip-club__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Deep Green */
  border: 2px solid #2AD16F; /* Deep Green */
}

.page-vip-club__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
}

.page-vip-club__btn-text {
  color: #2AD16F; /* Deep Green */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-vip-club__btn-text:hover {
  color: #57E38D; /* Glow */
}

.page-vip-club__btn--large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Cards */
.page-vip-club__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  height: 100%; /* Ensure cards in grid have equal height */
  display: flex;
  flex-direction: column;
}

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

.page-vip-club__card-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
  flex-grow: 1;
}

/* Levels Section */
.page-vip-club__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__level-card {
  text-align: center;
  justify-content: space-between;
}

/* Benefits Section */
.page-vip-club__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__benefit-card {
  text-align: left;
}

/* How to Join Section */
.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-vip-club__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-vip-club__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-vip-club__faq-question::-webkit-details-marker { /* For details/summary */
  display: none;
}

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

.page-vip-club__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

.page-vip-club__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
}

.page-vip-club__faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.page-vip-club__cta-final {
  padding: 80px 0;
  background: linear-gradient(180deg, #0A4B2C 0%, #11A84E 100%); /* Deep Green to Main Color */
}

.page-vip-club__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }

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

  .page-vip-club__hero-content {
    margin-top: -60px;
    padding: 30px;
  }

  .page-vip-club__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }

  .page-vip-club__section-description {
    font-size: 16px;
  }

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

  .page-vip-club__card-text {
    font-size: 15px;
  }
}

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

  .page-vip-club__hero-section {
    padding-bottom: 40px;
  }

  .page-vip-club__hero-image {
    height: 300px;
  }

  .page-vip-club__hero-content {
    margin-top: -40px;
    padding: 20px;
  }

  .page-vip-club__hero-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }

  .page-vip-club__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club a[class*="button"],
  .page-vip-club 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;
  }

  .page-vip-club__cta-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-vip-club__section {
    padding: 40px 0;
  }

  .page-vip-club__section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .page-vip-club__section-description {
    font-size: 15px;
  }

  .page-vip-club__levels-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__card {
    padding: 20px;
  }

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

  .page-vip-club__card-text {
    font-size: 14px;
  }

  .page-vip-club__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-vip-club__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 14px;
  }

  .page-vip-club__cta-final {
    padding: 60px 0;
  }

  /* Image responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-vip-club__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for decorative spacing */
  }
}

/* General image rules for content area */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* No CSS filters allowed for images */
.page-vip-club img {
  filter: none; /* Ensure no filters are applied */
}