/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette */
  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-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Main text color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-vip-club__section-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-vip-club__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text on primary button */
  border: none;
}

.page-vip-club__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Main text color */
  border: 2px solid #2E7A4E; /* Border color from custom palette */
}

.page-vip-club__btn-secondary:hover {
  background-color: #2E7A4E;
  color: #ffffff;
}

.page-vip-club a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club a:hover {
  color: #2AD16F;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Adjust as needed */
  overflow: hidden;
  padding-top: 10px; /* Small padding, body handles header offset */
  padding-bottom: 60px;
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 12px;
  margin-top: 60px; /* Push content down over image */
}

.page-vip-club__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-vip-club__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* About Section */
.page-vip-club__about-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-vip-club__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-vip-club__feature-icon {
  width: 100%;
  height: auto;
  max-width: 200px; /* Ensure images are not too large in cards */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__feature-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-vip-club__feature-description {
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-vip-club__tier-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-vip-club__tier-bronze {
  border-color: #CD7F32; /* Bronze color */
}

.page-vip-club__tier-silver {
  border-color: #C0C0C0; /* Silver color */
}

.page-vip-club__tier-gold {
  border-color: #F2C14E; /* Gold color */
}

.page-vip-club__tier-platinum {
  border-color: #E5E4E2; /* Platinum color */
}

.page-vip-club__tier-title {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-vip-club__tier-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-club__tier-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.page-vip-club__tier-benefits li::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
}

.page-vip-club__cta-text {
  text-align: center;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 30px;
}

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

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

.page-vip-club__step-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-vip-club__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-vip-club__step-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-vip-club__step-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Exclusive Offers Section */
.page-vip-club__exclusive-offers {
  padding: 80px 0;
}

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

.page-vip-club__offer-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  text-align: center;
}

.page-vip-club__offer-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__offer-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-vip-club__offer-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Video Section */
.page-vip-club__video-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-vip-club__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 12px;
  border: 1px solid #2E7A4E;
}

.page-vip-club__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}

.page-vip-club__video-cta {
  margin-top: 30px;
}

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

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

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

.page-vip-club__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

.page-vip-club__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-vip-club__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* CTA Bottom Section */
.page-vip-club__cta-bottom {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  text-align: center;
}

.page-vip-club__cta-bottom .page-vip-club__cta-button {
  margin: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-content {
    margin-top: 30px;
  }
}

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

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

  .page-vip-club__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-vip-club__section-intro {
    font-size: 0.95rem;
  }

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

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

  .page-vip-club__features-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__offers-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__feature-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card,
  .page-vip-club__offer-card {
    padding: 20px;
  }

  .page-vip-club__cta-button,
  .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;
    margin-bottom: 10px;
  }

  .page-vip-club__cta-bottom .page-vip-club__cta-button {
    margin: 5px 0;
  }

  .page-vip-club__cta-bottom .page-vip-club__cta-button:last-child {
    margin-bottom: 0;
  }

  .page-vip-club__video-wrapper {
    padding-bottom: 75%; /* Adjust for mobile video aspect ratio if needed, or keep 56.25% */
  }

  /* Mobile specific image, video, and container rules */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club video,
  .page-vip-club__video {
    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-section,
  .page-vip-club__about-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__exclusive-offers,
  .page-vip-club__video-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-bottom,
  .page-vip-club__video-container,
  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  .page-vip-club__video-section {
    padding-top: 10px !important; /* Small padding */
  }

  .page-vip-club__cta-bottom .page-vip-club__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-content {
    padding: 10px;
  }

  .page-vip-club__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-vip-club__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
}