/* 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 default light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8;
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #0A2239; /* Primary dark blue */
  text-align: center;
  margin-bottom: 40px;
  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: #FFD700; /* Secondary gold */
  border-radius: 2px;
}

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

/* Hero Section */
.page-vip-program__hero-section {
  background: linear-gradient(135deg, #0A2239, #1a3a5a);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

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

.page-vip-program__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary gold */
  color: #0A2239; /* Primary dark blue */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-program__hero-cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

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

/* General Call to Action Button */
.page-vip-program__cta-button {
  display: inline-block;
  background-color: #0A2239; /* Primary dark blue */
  color: #FFD700; /* Secondary gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-vip-program__cta-button:hover {
  background-color: #071a2b;
}

.page-vip-program__cta-button--large {
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 50px;
}

/* Introduction Section */
.page-vip-program__introduction-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Levels Section */
.page-vip-program__levels-section {
  padding: 60px 0;
  background-color: #f0f4f7;
}

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

.page-vip-program__level-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px 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-program__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program__level-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-bottom: 15px;
}

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

.page-vip-program__image-full-width {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

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

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

.page-vip-program__benefit-card {
  background-color: #0A2239;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
  border-bottom: 5px solid #FFD700;
}

.page-vip-program__benefit-card:hover {
  background-color: #1a3a5a;
}

.page-vip-program__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-program__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* How to Join Section */
.page-vip-program__how-to-join-section {
  padding: 60px 0;
  background-color: #f0f4f7;
  text-align: center;
}

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

.page-vip-program__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
  position: relative;
  padding-top: 60px;
}

.page-vip-program__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2239;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program__step-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-bottom: 15px;
}

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

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

.page-vip-program__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-vip-program__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-vip-program__faq-question {
  font-size: 1.3em;
  color: #0A2239;
  margin-bottom: 10px;
}

.page-vip-program__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Details Section (for detail pages list) */
.page-vip-program__details-section {
  padding: 60px 0;
  background-color: #f0f4f7;
  text-align: center;
}

.page-vip-program__details-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 40px auto;
  max-width: 700px;
  border-left: 5px solid #0A2239;
}

.page-vip-program__details-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-vip-program__details-title a {
  color: #0A2239;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-program__details-title a:hover {
  color: #FFD700;
}

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

.page-vip-program__details-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2239;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-program__details-button:hover {
  background-color: #e0b800;
}

/* Final CTA Section */
.page-vip-program__cta-final-section {
  padding: 80px 0;
  background: linear-gradient(to right, #0A2239, #1a3a5a);
  color: #ffffff;
  text-align: center;
}

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

.page-vip-program__cta-final-section .page-vip-program__section-text {
  color: #f0f0f0;
}

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

  .page-vip-program__hero-description {
    font-size: 1.2em;
  }

  .page-vip-program__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-program__hero-section {
    padding: 60px 15px;
  }

  .page-vip-program__hero-title {
    font-size: 2.5em;
  }

  .page-vip-program__hero-description {
    font-size: 1em;
  }

  .page-vip-program__hero-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-vip-program__section-title {
    font-size: 1.8em;
  }

  .page-vip-program__section-text {
    font-size: 0.95em;
  }

  .page-vip-program__levels-grid,
  .page-vip-program__benefits-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-program__image-full-width {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content images are responsive and not too small */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min width */
    min-height: 200px; /* Enforce min height */
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 2em;
  }

  .page-vip-program__section-title {
    font-size: 1.5em;
  }

  .page-vip-program__level-title,
  .page-vip-program__benefit-title,
  .page-vip-program__step-title,
  .page-vip-program__faq-question,
  .page-vip-program__details-title {
    font-size: 1.4em;
  }

  .page-vip-program__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -20px;
  }

  .page-vip-program__step-card {
    padding-top: 50px;
  }
}