/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text on light body background */
  background-color: #FFFFFF; /* Matches body background */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #017439;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-vip-club__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__card {
  background: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-vip-club__card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #017439;
  margin: 20px 20px 10px;
}

.page-vip-club__card-description {
  font-size: 1em;
  color: #555555;
  margin: 0 20px 20px;
}

/* Buttons */
.page-vip-club__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-vip-club__cta-buttons--center {
  text-align: center;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

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

.page-vip-club__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-vip-club__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-vip-club__btn-secondary:hover {
  background-color: #e0f2e7;
  border-color: #017439;
}

.page-vip-club__btn-text {
  display: inline-block;
  color: #017439;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-vip-club__btn-text:hover {
  color: #00562e;
}

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

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Match hero image width */
  margin-bottom: 30px;
}

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
}

.page-vip-club__main-title {
  font-weight: 800;
  color: #FFFF00; /* Use font color for login/register */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* No fixed font-size for H1, rely on clamp for responsiveness if needed */
/* Example if clamp is absolutely necessary: font-size: clamp(2.5rem, 5vw, 3.5rem); */

.page-vip-club__hero-section .page-vip-club__description {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Benefits Section */
.page-vip-club__benefits-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-vip-club__benefit-card {
  padding: 0;
  text-align: center;
}

.page-vip-club__benefit-card .page-vip-club__card-image {
  height: 200px;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
}

.page-vip-club__tiers-section .page-vip-club__section-title,
.page-vip-club__tiers-section .page-vip-club__intro-text {
  color: #ffffff;
}

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

.page-vip-club__tier-card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding-bottom: 20px;
  text-align: center;
}

.page-vip-club__tier-card .page-vip-club__card-title {
  color: #FFFF00; /* Highlight tier titles */
  margin-top: 15px;
}

.page-vip-club__tier-card .page-vip-club__card-image {
  height: 180px;
  border-radius: 10px 10px 0 0;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 15px 20px;
  text-align: left;
}

.page-vip-club__tier-benefits li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95em;
}

.page-vip-club__tier-benefits li::before {
  content: '✔';
  color: #FFFF00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__tier-requirement {
  font-size: 0.9em;
  color: #e0e0e0;
  margin: 10px 20px 0;
}

.page-vip-club__note-text {
  text-align: center;
  font-size: 0.9em;
  color: #e0e0e0;
  margin-top: 40px;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-vip-club__step-card {
  text-align: center;
  padding: 30px 20px;
}

.page-vip-club__step-icon {
  width: 60px;
  height: 60px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-vip-club__step-card .page-vip-club__card-title {
  margin-top: 0;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #f0f5f0;
}

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

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.page-vip-club__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  list-style: none;
}

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

.page-vip-club__faq-item[open] summary {
  background-color: #e0f2e7;
  border-bottom: 1px solid #d0e0d0;
  border-radius: 8px 8px 0 0;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-vip-club__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
}

.page-vip-club__faq-answer p {
  margin-bottom: 10px;
}

/* Bottom CTA Section */
.page-vip-club__cta-bottom-section {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
  text-align: center;
}

.page-vip-club__cta-bottom-section .page-vip-club__section-title,
.page-vip-club__cta-bottom-section .page-vip-club__intro-text {
  color: #ffffff;
}

.page-vip-club__cta-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__section-title {
    font-size: 2em;
  }

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

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

  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-vip-club__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .page-vip-club__hero-section {
    padding: 30px 15px !important;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-vip-club__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem); /* Example clamp for h1 */
    margin-bottom: 15px;
  }

  .page-vip-club__hero-section .page-vip-club__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-vip-club__hero-image-wrapper,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-bottom-section,
  .page-vip-club__container,
  .page-vip-club__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-bottom-section {
    padding: 40px 0 !important;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-vip-club__faq-list {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-vip-club__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

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

@media (max-width: 480px) {
  .page-vip-club__section-title {
    font-size: 1.5em;
  }

  .page-vip-club__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-vip-club__cta-buttons {
    gap: 10px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    font-size: 0.9em !important;
    padding: 10px 15px !important;
  }
}