/* style/vip-club.css */

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

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #000000; /* Main dark color for titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
}

.page-vip-club__paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to make text more readable */
}

.page-vip-club__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  max-width: 90%;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-vip-club__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-vip-club__hero-button--join {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
}

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

/* Introduction Section */
.page-vip-club__introduction {
  padding: 60px 0;
}

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

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

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

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

.page-vip-club__level-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-vip-club__level-description {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

.page-vip-club__detail-list {
  margin-top: 60px;
  text-align: center;
}

.page-vip-club__detail-list-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
}

.page-vip-club__detail-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  display: inline-block;
  max-width: 600px;
  width: 100%;
}

.page-vip-club__detail-item-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-vip-club__detail-item-title a {
  color: #FCBC45; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__detail-item-title a:hover {
  text-decoration: underline;
}

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

.page-vip-club__detail-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000; /* Main dark color for buttons */
  color: #FFFFFF; /* White text for contrast */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

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

.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 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-5px);
}

.page-vip-club__benefit-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Adjusted height for aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-vip-club__cta-area {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000; /* Dark background for CTA */
  border-radius: 10px;
  color: #FFFFFF;
}

.page-vip-club__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-vip-club__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-vip-club__cta-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

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

.page-vip-club__cta-button--start-journey {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  background-color: #000000;
  color: #FFFFFF;
}

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

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

.page-vip-club__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* Why playjl Section */
.page-vip-club__why-playjl {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-vip-club__why-playjl .page-vip-club__section-title {
  color: #FFFFFF;
}

.page-vip-club__why-playjl .page-vip-club__paragraph {
  color: #f0f0f0;
}

.page-vip-club__cta-button--explore {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  background-color: #FCBC45;
  color: #000000;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-vip-club__paragraph {
    font-size: 0.95em;
  }
  .page-vip-club__levels-grid,
  .page-vip-club__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__level-image,
  .page-vip-club__benefit-icon {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 100% !important; /* Prevent overflow */
  }
  .page-vip-club__cta-area {
    padding: 30px 20px;
  }
  .page-vip-club__cta-text {
    font-size: 1.2em;
  }
  .page-vip-club__cta-button {
    display: block;
    margin: 15px auto;
  }
  .page-vip-club__faq-question {
    font-size: 1.2em;
  }
  .page-vip-club__faq-answer {
    font-size: 0.9em;
  }
  /* Ensure all images within .page-vip-club are responsive and do not cause overflow */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-club__hero-image {
    max-height: 400px;
  }
}

@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__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-vip-club__level-title {
    font-size: 1.5em;
  }
  .page-vip-club__benefit-title {
    font-size: 1.3em;
  }
}