/* style/vip-club.css */

/* Custom Colors */
:root {
  --vip-background: #08160F;
  --vip-card-bg: #11271B;
  --vip-text-main: #F2FFF6;
  --vip-text-secondary: #A7D9B8;
  --vip-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --vip-border: #2E7A4E;
  --vip-glow: #57E38D;
  --vip-gold: #F2C14E;
  --vip-divider: #1E3A2A;
  --vip-deep-green: #0A4B2C;
}

.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: var(--vip-text-main);
  background-color: var(--vip-background);
}

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

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--vip-card-bg);
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--vip-border);
}

.page-vip-club__main-title {
  color: var(--vip-gold);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-vip-club__hero-description {
  color: var(--vip-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* General Section Styling */
.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-vip-club__section-title {
  color: var(--vip-gold);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--vip-button-gradient);
  border-radius: 2px;
}

.page-vip-club__text-block {
  color: var(--vip-text-main);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background: var(--vip-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-vip-club__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-vip-club__btn-secondary {
  background: transparent;
  color: var(--vip-gold);
  border: 2px solid var(--vip-gold);
}

.page-vip-club__btn-secondary:hover {
  background: var(--vip-gold);
  color: var(--vip-background);
  transform: translateY(-3px);
}

/* Tiers Section */
.page-vip-club__tiers-section {
  background-color: var(--vip-deep-green);
  padding: 60px 0;
}

.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-color: var(--vip-card-bg);
  border: 1px solid var(--vip-border);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club__tier-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--vip-border);
}

.page-vip-club__tier-title {
  color: var(--vip-gold);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--vip-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

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

.page-vip-club__tier-benefits li::before {
  content: '✓';
  color: var(--vip-glow);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 60px 0;
  background-color: var(--vip-background);
}

.page-vip-club__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  counter-reset: step-counter;
}

.page-vip-club__steps-list li {
  counter-increment: step-counter;
  background-color: var(--vip-card-bg);
  border: 1px solid var(--vip-border);
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--vip-text-main);
  line-height: 1.6;
}

.page-vip-club__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vip-button-gradient);
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-vip-club__steps-list strong {
  color: var(--vip-gold);
}

/* Exclusive Offers Section */
.page-vip-club__exclusive-offers-section {
  background-color: var(--vip-deep-green);
  padding: 60px 0;
}

.page-vip-club__offers-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-vip-club__offers-list li {
  background-color: var(--vip-card-bg);
  border: 1px solid var(--vip-border);
  border-radius: 10px;
  padding: 25px;
  color: var(--vip-text-main);
  line-height: 1.6;
  position: relative;
  padding-left: 55px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-vip-club__offers-list li strong {
  color: var(--vip-gold);
}

.page-vip-club__offers-list li::before {
  content: '★';
  position: absolute;
  left: 20px;
  top: 25px;
  color: var(--vip-glow);
  font-size: 1.5rem;
  line-height: 1;
}

/* Customer Service Section */
.page-vip-club__customer-service-section {
  padding: 60px 0;
  background-color: var(--vip-background);
}

.page-vip-club__service-highlights {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-vip-club__service-highlights li {
  background-color: var(--vip-card-bg);
  border: 1px solid var(--vip-border);
  border-radius: 10px;
  padding: 25px;
  color: var(--vip-text-main);
  line-height: 1.6;
  position: relative;
  padding-left: 55px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-vip-club__service-highlights li strong {
  color: var(--vip-gold);
}

.page-vip-club__service-highlights li::before {
  content: '⚙️'; /* Or a suitable icon */
  position: absolute;
  left: 20px;
  top: 25px;
  font-size: 1.5rem;
  line-height: 1;
}

/* FAQ Section */
.page-vip-club__faq-section {
  background-color: var(--vip-deep-green);
  padding: 60px 0;
}

.page-vip-club__faq-list {
  margin-top: 40px;
}

.page-vip-club__faq-item {
  background-color: var(--vip-card-bg);
  border: 1px solid var(--vip-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--vip-gold);
  font-size: 1.1rem;
  font-weight: 600;
  background-color: var(--vip-card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-vip-club__faq-question:hover {
  background-color: var(--vip-divider);
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--vip-glow);
}

.page-vip-club__faq-answer {
  padding: 0 25px 20px;
  color: var(--vip-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-question {
  background-color: var(--vip-divider);
}

/* CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--vip-background);
}

.page-vip-club__cta-section .page-vip-club__section-title {
  margin-bottom: 25px;
}

.page-vip-club__cta-section .page-vip-club__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-content {
    padding: 30px;
  }
  .page-vip-club__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-vip-club__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-vip-club__hero-content {
    margin-top: 20px;
    padding: 25px 15px;
  }
  .page-vip-club__main-title {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem);
  }
  .page-vip-club__hero-description {
    font-size: 1rem;
  }
  .page-vip-club__container,
  .page-vip-club__tiers-section .page-vip-club__container,
  .page-vip-club__how-to-join-section .page-vip-club__container,
  .page-vip-club__exclusive-offers-section .page-vip-club__container,
  .page-vip-club__customer-service-section .page-vip-club__container,
  .page-vip-club__faq-section .page-vip-club__container,
  .page-vip-club__cta-section .page-vip-club__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-club__hero-image,
  .page-vip-club__tier-image,
  .page-vip-club__tiers-grid img,
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .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: 15px; /* Add spacing between stacked buttons */
  }
  .page-vip-club__cta-section .page-vip-club__cta-button {
    margin-bottom: 0;
  }

  .page-vip-club__tiers-grid,
  .page-vip-club__offers-list,
  .page-vip-club__service-highlights {
    grid-template-columns: 1fr;
  }
  .page-vip-club__steps-list li,
  .page-vip-club__offers-list li,
  .page-vip-club__service-highlights li {
    padding-left: 20px; /* Adjust for smaller screens */
    padding-right: 15px;
  }
  .page-vip-club__steps-list li::before,
  .page-vip-club__offers-list li::before,
  .page-vip-club__service-highlights li::before {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-content {
    padding: 20px 10px;
  }
  .page-vip-club__main-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }
  .page-vip-club__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
}