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

.page-vip-club__hero-section {
  background-color: #001f3f;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-vip-club__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-vip-club__button--primary {
  background-color: #ffc107;
  color: #001f3f;
}

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

.page-vip-club__button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-vip-club__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-2px);
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  overflow: hidden;
}

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #001f3f;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-vip-club__benefits-section,
.page-vip-club__levels-section,
.page-vip-club__exclusive-events-section,
.page-vip-club__service-section,
.page-vip-club__join-section,
.page-vip-club__faq-section,
.page-vip-club__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.page-vip-club__benefit-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 400px; /* Constrain for card layout */
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #001f3f;
  margin-bottom: 15px;
}

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

.page-vip-club__levels-section {
  background-color: #f8f8f8;
}

.page-vip-club__level-preview {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-vip-club__level-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__level-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-vip-club__level-subtitle {
  font-size: 2em;
  color: #001f3f;
  margin-bottom: 20px;
}

.page-vip-club__level-description {
  color: #666666;
  margin-bottom: 30px;
}

.page-vip-club__exclusive-events-section {
  background-color: #ffffff;
}

.page-vip-club__event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-club__event-card {
  background-color: #001f3f;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__event-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-vip-club__event-card h3 {
  padding: 20px 20px 10px;
  color: #ffc107;
  font-size: 1.4em;
}

.page-vip-club__event-card p {
  padding: 0 20px 20px;
  color: #cccccc;
}

.page-vip-club__service-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-vip-club__service-item {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  text-align: center;
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-club__service-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 400px; /* Constrain for card layout */
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-vip-club__service-title {
  font-size: 1.6em;
  color: #001f3f;
  margin-bottom: 15px;
}

.page-vip-club__service-description {
  color: #666666;
}

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

.page-vip-club__step-card {
  background-color: #ffffff;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-vip-club__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 20px;
}

.page-vip-club__step-title {
  font-size: 1.5em;
  color: #001f3f;
  margin-bottom: 15px;
}

.page-vip-club__step-description {
  color: #666666;
}

.page-vip-club__step-description a {
  color: #001f3f;
  text-decoration: underline;
  font-weight: bold;
}

.page-vip-club__join-cta {
  text-align: center;
}

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

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

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

.page-vip-club__faq-answer {
  color: #666666;
}

.page-vip-club__cta-section {
  background-color: #001f3f;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.page-vip-club__cta-section .page-vip-club__section-title {
  color: #ffc107;
}

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

.page-vip-club__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* 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 {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-vip-club__hero-section {
    padding: 60px 15px;
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__button {
    width: 100%;
    max-width: 300px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-vip-club__benefits-section,
  .page-vip-club__levels-section,
  .page-vip-club__exclusive-events-section,
  .page-vip-club__service-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    padding: 60px 15px;
  }
  .page-vip-club__level-preview {
    flex-direction: column;
  }
  .page-vip-club__level-image {
    max-width: 100%;
  }
  .page-vip-club__level-text {
    min-width: unset;
    max-width: 100%;
    text-align: center;
  }
  .page-vip-club__level-subtitle {
    font-size: 1.6em;
  }
  .page-vip-club__event-image,
  .page-vip-club__benefit-icon,
  .page-vip-club__service-icon {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  /* Ensure all images within .page-vip-club are responsive and do not overflow */
  .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__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
  }
}