/* style/vip-club-exclusive-events.css */
.page-vip-club-exclusive-events {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8; /* Light text on dark background */
  background-color: #001a33; /* Darker variant of primary for overall background */
}

.page-vip-club-exclusive-events__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #003366, #001a33); /* Primary to darker primary */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-vip-club-exclusive-events__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-vip-club-exclusive-events__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-vip-club-exclusive-events__subtitle {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-vip-club-exclusive-events__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-vip-club-exclusive-events__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-vip-club-exclusive-events__section {
  padding: 60px 20px;
  background-color: #002244; /* Slightly lighter than overall background for sections */
  margin-bottom: 20px;
}

.page-vip-club-exclusive-events__section:nth-child(even) {
  background-color: #003366; /* Primary color for alternating sections */
}

.page-vip-club-exclusive-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-vip-club-exclusive-events__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-vip-club-exclusive-events__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-vip-club-exclusive-events__introduction p, 
.page-vip-club-exclusive-events__vip-benefits p,
.page-vip-club-exclusive-events__how-to-join p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #c0c0c0;
  text-align: justify;
}

.page-vip-club-exclusive-events__introduction p strong,
.page-vip-club-exclusive-events__vip-benefits p strong,
.page-vip-club-exclusive-events__how-to-join p strong {
  color: #FFD700;
}

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

.page-vip-club-exclusive-events__event-card {
  background-color: #001a33; /* Darker background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-exclusive-events__event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club-exclusive-events__event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFD700;
}

.page-vip-club-exclusive-events__event-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 15px;
  line-height: 1.3;
}

.page-vip-club-exclusive-events__event-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: justify;
}

.page-vip-club-exclusive-events__button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Deep blue text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club-exclusive-events__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-vip-club-exclusive-events__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-vip-club-exclusive-events__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-vip-club-exclusive-events__button--primary {
  background-color: #FFD700;
  color: #003366;
}

.page-vip-club-exclusive-events__button--primary:hover {
  background-color: #e6c200;
}

.page-vip-club-exclusive-events__button--secondary {
  background-color: #003366; /* Deep blue button */
  color: #FFD700; /* Gold text on deep blue button */
  border: 2px solid #FFD700;
}

.page-vip-club-exclusive-events__button--secondary:hover {
  background-color: #004488; /* Lighter deep blue on hover */
  border-color: #e6c200;
}

.page-vip-club-exclusive-events__vip-benefits .page-vip-club-exclusive-events__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-vip-club-exclusive-events__vip-benefits .page-vip-club-exclusive-events__benefit-list li {
  background-color: #001a33;
  padding: 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-exclusive-events__vip-benefits .page-vip-club-exclusive-events__benefit-list li strong {
  color: #FFD700;
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.page-vip-club-exclusive-events__how-to-join .page-vip-club-exclusive-events__steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  counter-reset: step-counter;
}

.page-vip-club-exclusive-events__how-to-join .page-vip-club-exclusive-events__steps li {
  background-color: #002244;
  padding: 25px 25px 25px 60px;
  margin-bottom: 20px;
  border-radius: 8px;
  position: relative;
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-vip-club-exclusive-events__how-to-join .page-vip-club-exclusive-events__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #003366;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-vip-club-exclusive-events__how-to-join .page-vip-club-exclusive-events__button--large {
  display: block;
  margin: 50px auto 0 auto;
  text-align: center;
  max-width: 400px;
}

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

.page-vip-club-exclusive-events__testimonial-card {
  background-color: #001a33;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FFD700;
}

.page-vip-club-exclusive-events__testimonial-text {
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.7;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-vip-club-exclusive-events__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  font-size: 1em;
  text-align: right;
}

.page-vip-club-exclusive-events__cta {
  background: linear-gradient(90deg, #003366, #001a33); /* Gradient for CTA section */
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0; /* No margin bottom for last section */
}

.page-vip-club-exclusive-events__cta-content {
  max-width: 900px;
}

.page-vip-club-exclusive-events__cta .page-vip-club-exclusive-events__heading {
  color: #FFD700;
}

.page-vip-club-exclusive-events__cta p {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-vip-club-exclusive-events__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-club-exclusive-events__title {
    font-size: 2.5em;
  }

  .page-vip-club-exclusive-events__subtitle {
    font-size: 1.2em;
  }

  .page-vip-club-exclusive-events__heading {
    font-size: 2em;
  }

  .page-vip-club-exclusive-events__event-card-grid,
  .page-vip-club-exclusive-events__vip-benefits .page-vip-club-exclusive-events__benefit-list,
  .page-vip-club-exclusive-events__testimonials .page-vip-club-exclusive-events__testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-exclusive-events__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-vip-club-exclusive-events__button--large {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .page-vip-club-exclusive-events__hero {
    padding: 60px 15px;
  }

  .page-vip-club-exclusive-events__title {
    font-size: 2em;
  }

  .page-vip-club-exclusive-events__subtitle {
    font-size: 1em;
  }

  .page-vip-club-exclusive-events__section {
    padding: 40px 15px;
  }

  .page-vip-club-exclusive-events__heading {
    font-size: 1.8em;
  }

  .page-vip-club-exclusive-events__event-title {
    font-size: 1.5em;
  }

  .page-vip-club-exclusive-events__introduction p, 
  .page-vip-club-exclusive-events__vip-benefits p,
  .page-vip-club-exclusive-events__how-to-join p,
  .page-vip-club-exclusive-events__event-description,
  .page-vip-club-exclusive-events__testimonial-text {
    font-size: 0.95em;
  }

  .page-vip-club-exclusive-events__how-to-join .page-vip-club-exclusive-events__steps li {
    padding: 20px 20px 20px 50px;
  }

  .page-vip-club-exclusive-events__how-to-join .page-vip-club-exclusive-events__steps li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
    left: 10px;
  }

  .page-vip-club-exclusive-events__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club-exclusive-events__cta p {
    font-size: 1em;
  }
}