/* style/vip-club.css */

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

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff; /* Light text for dark hero background */
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4); /* Darken image for text readability, no color change */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  padding: 40px;
  border-radius: 10px;
}

.page-vip-club__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main color for CTA */
  color: #8B0000; /* Auxiliary color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-vip-club__cta-button:hover {
  background-color: #8B0000; /* Auxiliary color on hover */
  color: #FFD700;
  border-color: #8B0000;
}

/* Section Titles and Intros */
.page-vip-club__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

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

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

.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;
  border-top: 5px solid #FFD700;
}

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

.page-vip-club__benefit-icon {
  width: 200px; /* Minimum display size */
  height: 200px; /* Minimum display size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-vip-club__card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-vip-club__card-description {
  font-size: 0.95em;
  color: #666666;
}

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

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

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

.page-vip-club__tier-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;
  border-bottom: 5px solid #8B0000;
}

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

.page-vip-club__tier-image {
  width: 200px; /* Minimum display size */
  height: 200px; /* Minimum display size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
}

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

.page-vip-club__tier-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #555555;
}

.page-vip-club__progression-info {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #555555;
}

.page-vip-club__cta-button--secondary {
  margin-top: 30px;
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-vip-club__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

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

.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 {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
}

.page-vip-club__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #8B0000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-vip-club__step-card a {
  color: #8B0000;
  text-decoration: underline;
}

.page-vip-club__step-card a:hover {
  color: #FFD700;
}

.page-vip-club__join-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #FFD700;
}

.page-vip-club__join-cta-text {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 30px;
}

.page-vip-club__join-image {
  width: 600px; /* Display width */
  height: 450px; /* Display height */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

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

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

.page-vip-club__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
  border-left: 5px solid #FFD700;
}

.page-vip-club__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-vip-club__faq-answer {
  font-size: 1em;
  color: #666666;
}

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

.page-vip-club__faq-outro a {
  color: #8B0000;
  text-decoration: underline;
}

.page-vip-club__faq-outro a:hover {
  color: #FFD700;
}

/* Final CTA Section */
.page-vip-club__cta-section {
  background-color: #8B0000; /* Auxiliary color background */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-vip-club__cta-container {
  max-width: 900px;
}

.page-vip-club__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-club__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-bottom: 20px;
}

.page-vip-club__cta-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
  display: block;
  margin-top: 15px;
}

.page-vip-club__cta-link:hover {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club__hero-description {
    font-size: 1.2em;
  }
  .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 {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-vip-club__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-vip-club__hero-content {
    padding: 30px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-vip-club__benefits-grid, .page-vip-club__tiers-grid, .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__benefit-card, .page-vip-club__tier-card, .page-vip-club__step-card, .page-vip-club__faq-item {
    padding: 20px;
  }
  .page-vip-club__benefit-icon, .page-vip-club__tier-image {
    width: 200px; /* Ensure minimum size on mobile */
    height: 200px; /* Ensure minimum size on mobile */
  }
  .page-vip-club__card-title {
    font-size: 1.3em;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
  }
  .page-vip-club__cta-title {
    font-size: 2em;
  }
  .page-vip-club__cta-description {
    font-size: 1em;
  }
  .page-vip-club__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-vip-club__join-image {
    width: 100%; /* Mobile: prevent overflow */
    height: auto;
  }
  /* Mobile content area images must not cause horizontal scroll */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-vip-club {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__hero-content {
    padding: 20px;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
}