/* style/vip-club.css */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Matches body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
}

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

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-vip-club__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-vip-club__hero-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-vip-club__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club__hero-button--login:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-vip-club__benefits-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

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

.page-vip-club__benefit-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__benefit-description {
  font-size: 1em;
  color: #666666;
}

.page-vip-club__tiers-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-vip-club__tiers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.page-vip-club__tier-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__tier-name {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-vip-club__tier-description {
  font-size: 1em;
  margin-bottom: 25px;
  color: #cccccc;
}

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.95em;
  color: #f0f0f0;
}

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

.page-vip-club__tier-features li::before {
  content: '✓';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__cta-area {
  text-align: center;
  margin-top: 40px;
}

.page-vip-club__cta-text {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 30px;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club__cta-button--register:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-vip-club__how-to-join-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.page-vip-club__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-vip-club__step-button:hover {
  background-color: #333333;
}

.page-vip-club__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-club__faq-link {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-vip-club__faq-link a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__faq-link a:hover {
  text-decoration: underline;
}

.page-vip-club__testimonials-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-vip-club__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-club__testimonial-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  padding: 30px;
  text-align: center;
}

.page-vip-club__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FCBC45;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

.page-vip-club__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-vip-club__testimonial-author {
  font-weight: bold;
  color: #000000;
  font-size: 1em;
}

.page-vip-club__cta-bottom-section {
  padding: 80px 20px;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
}

.page-vip-club__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-vip-club__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-vip-club__cta-button--join {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club__cta-button--join:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-vip-club__cta-button--login {
  background-color: #FFFFFF;
  color: #000000;
}

.page-vip-club__cta-button--login:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-vip-club__about-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-vip-club__about-paragraph {
  font-size: 1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: justify;
}

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 60px 15px 40px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-vip-club__benefits-section, .page-vip-club__tiers-section, .page-vip-club__how-to-join-section, .page-vip-club__testimonials-section, .page-vip-club__cta-bottom-section, .page-vip-club__about-section {
    padding: 40px 15px;
  }
  .page-vip-club__benefits-grid, .page-vip-club__tiers-container, .page-vip-club__steps-grid, .page-vip-club__testimonials-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__benefit-card, .page-vip-club__tier-card, .page-vip-club__step-card, .page-vip-club__testimonial-card {
    padding: 25px;
  }
  .page-vip-club__cta-title {
    font-size: 2em;
  }
  .page-vip-club__cta-description {
    font-size: 1.1em;
  }
  .page-vip-club__cta-button {
    display: block;
    margin: 15px auto;
    width: fit-content;
  }
  /* Ensure all content images do not cause horizontal overflow */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-club__benefit-icon, .page-vip-club__step-image, .page-vip-club__testimonial-avatar {
    max-width: 100%; /* Ensure images scale down */
    width: auto; /* Allow width to be determined by max-width */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Keep min size if needed for layout, but max-width:100% takes precedence */
    min-height: 200px; /* Keep min size if needed for layout */
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-button {
    display: block;
    margin: 10px auto;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
  .page-vip-club__cta-button {
    font-size: 1em;
  }
}