/* style/vip-program.css */

/* Base styles for the VIP Program page */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Page background color */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC */
}

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

.page-vip-program__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-vip-program__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  color: #FFFFFF; /* Light text for dark hero image */
  text-align: center;
}

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

.page-vip-program__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-vip-program__main-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45;
}

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

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

.page-vip-program__overview-image {
  display: block;
  margin: 50px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-vip-program__benefit-icon {
  width: 250px; /* Min size 200px */
  height: 150px; /* Min size 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-program__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

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

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

.page-vip-program__tier-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__tier-name {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

.page-vip-program__tier-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text for dark button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program__tier-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-vip-program__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-program__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-vip-program__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default */
}

.page-vip-program__faq-item.active .page-vip-program__faq-answer {
  display: block;
}

/* Call to Action Section */
.page-vip-program__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Main color as background */
  color: #FFFFFF; /* White text for dark background */
  text-align: center;
}

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

.page-vip-program__cta-section .page-vip-program__section-title {
  color: #FCBC45;
}

.page-vip-program__cta-section .page-vip-program__section-title::after {
  background-color: #FFFFFF;
}

.page-vip-program__cta-section .page-vip-program__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-program__login-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-vip-program__login-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-vip-program__cta-subtext {
  margin-top: 20px;
  font-size: 1.1em;
}

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

@media (max-width: 768px) {
  .page-vip-program {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-vip-program__hero-section {
    min-height: 450px;
  }
  .page-vip-program__main-title {
    font-size: 2.5em;
  }
  .page-vip-program__hero-description {
    font-size: 1.2em;
  }
  .page-vip-program__section-title {
    font-size: 2em;
  }
  .page-vip-program__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-vip-program__benefits-grid, .page-vip-program__tier-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__faq-question {
    font-size: 1.3em;
  }
  /* Ensure images do not overflow on mobile */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-program__benefit-icon {
    width: 250px;
    height: 150px;
  }
  .page-vip-program__overview-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-section {
    min-height: 350px;
  }
  .page-vip-program__main-title {
    font-size: 2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program__benefit-icon {
    width: 200px; /* Smallest allowed size */
    height: 120px; /* Smallest allowed size */
  }
}