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

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

.page-vip-club__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-vip-club__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

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

.page-vip-club__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.6;
}

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

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  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;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-vip-club__hero-button:hover {
  background-color: #e0a83e;
  transform: translateY(-3px);
}

/* General CTA Button */
.page-vip-club__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-vip-club__cta-button:hover {
  background-color: #e0a83e;
  transform: translateY(-3px);
}

.page-vip-club__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

/* Benefits Grid */
.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: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-vip-club__benefit-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-vip-club__card-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1; /* Allow description to take available space */
}

/* Tiers System */
.page-vip-club__tiers-system {
  background-color: #f5f5f5;
}

.page-vip-club__tiers-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__tiers-details {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__tiers-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tiers-list {
  list-style-type: disc;
  margin-left: 25px;
  font-size: 1.1em;
  color: #333333;
}

.page-vip-club__tiers-item {
  margin-bottom: 10px;
}

/* Journey Cards */
.page-vip-club__journey-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__journey-card {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

/* Details Link Card */
.page-vip-club__details-link {
  background-color: #e9e9e9;
}

.page-vip-club__details-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  text-align: center;
}

.page-vip-club__details-card .page-vip-club__card-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-vip-club__details-card .page-vip-club__card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__details-card .page-vip-club__card-title a:hover {
  color: #FCBC45;
}

.page-vip-club__details-card .page-vip-club__card-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-vip-club__details-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* FAQ Section */
.page-vip-club__faq-items {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

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

/* Responsive Design */
@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 {
    padding-top: var(--header-offset, 80px);
  }
  .page-vip-club__hero-content {
    padding: 15px;
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__section {
    padding: 40px 0;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__benefits-grid, .page-vip-club__journey-cards {
    grid-template-columns: 1fr;
  }
  .page-vip-club__benefit-card, .page-vip-club__journey-card, .page-vip-club__details-card, .page-vip-club__faq-item {
    padding: 20px;
  }
  .page-vip-club__card-title {
    font-size: 1.3em;
  }
  .page-vip-club__tiers-subtitle {
    font-size: 1.5em;
  }
  /* Mobile image scaling */
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-vip-club__hero-image {
    height: 300px; /* Adjust height for mobile hero */
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__hero-button, .page-vip-club__cta-button {
    width: 90%;
    padding: 10px 0;
    font-size: 0.9em;
  }
  .page-vip-club__hero-image {
    height: 250px;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }
}