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

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

.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px; /* Ensure hero section has a minimum height */
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content area */
  color: #FFFFFF; /* Light text for dark background */
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* Slightly dim the background image to make text pop */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  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;
}

.page-vip-club__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-vip-club__button--primary,
.page-vip-club__button--secondary,
.page-vip-club__button--tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-vip-club__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
}

.page-vip-club__button--primary:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-vip-club__button--secondary {
  background-color: #FFFFFF; /* Register color for secondary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-vip-club__button--secondary:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-vip-club__button--tertiary {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FCBC45;
}

.page-vip-club__button--tertiary:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-vip-club__about-section,
.page-vip-club__levels-section,
.page-vip-club__perks-section,
.page-vip-club__join-section,
.page-vip-club__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #000000;
}

.page-vip-club__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #333333;
}

.page-vip-club__about-image,
.page-vip-club__levels-image,
.page-vip-club__perks-image,
.page-vip-club__join-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-vip-club__details-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-vip-club__details-card {
  background-color: #F8F8F8;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

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

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

.page-vip-club__card-title a {
  color: #000000;
  text-decoration: none;
}

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

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

.page-vip-club__perks-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-vip-club__perk-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333333;
}

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-vip-club__step-item {
  background-color: #F8F8F8;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
  position: relative;
  padding-left: 50px;
}

.page-vip-club__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.page-vip-club__join-steps {
  counter-reset: step-counter;
}

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

@media (max-width: 768px) {
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__button--primary,
  .page-vip-club__button--secondary,
  .page-vip-club__button--tertiary {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-text,
  .page-vip-club__perk-item,
  .page-vip-club__step-item {
    font-size: 1em;
  }
  .page-vip-club__about-image,
  .page-vip-club__levels-image,
  .page-vip-club__perks-image,
  .page-vip-club__join-image {
    max-width: 100%;
    height: auto;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }
  .page-vip-club__hero-section,
  .page-vip-club__about-section,
  .page-vip-club__levels-section,
  .page-vip-club__perks-section,
  .page-vip-club__join-section,
  .page-vip-club__cta-section {
    padding: 40px 0;
  }
  /* Mobile content area image constraint */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__details-card {
    max-width: 100%;
  }
}