/* style/vip-club.css */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches shared.css body background */
}

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

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

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

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

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #E0B500;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-vip-club__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-vip-club__text-block--note {
  text-align: center;
  font-style: italic;
  color: #cccccc;
}

.page-vip-club__intro-section,
.page-vip-club__privileges-section,
.page-vip-club__faq-section {
  padding: 60px 0;
}

.page-vip-club__dark-section {
  background-color: #0A2342;
  color: #ffffff;
}

.page-vip-club__tiers-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-vip-club__tier-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(224, 181, 0, 0.3);
}

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

.page-vip-club__tier-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 150px;
}

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

.page-vip-club__tier-description {
  font-size: 1em;
  color: #cccccc;
}

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

.page-vip-club__privilege-item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(224, 181, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-vip-club__privilege-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 150px; /* Enforce minimum size */
  object-fit: contain;
}

.page-vip-club__privilege-title {
  font-size: 1.5em;
  color: #E0B500;
  margin-bottom: 10px;
}

.page-vip-club__privilege-description {
  font-size: 1em;
  color: #cccccc;
}

.page-vip-club__how-to-join-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-vip-club__steps-list li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(224, 181, 0, 0.3);
}

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

.page-vip-club__step-description {
  font-size: 1em;
  color: #cccccc;
}

.page-vip-club__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-vip-club__faq-section {
  background-color: #0A2342;
  padding: 60px 0;
}

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

.page-vip-club__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(224, 181, 0, 0.2);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: #0A2342;
  color: #E0B500;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid rgba(224, 181, 0, 0.1);
}

.page-vip-club__faq-question:hover {
  background: #1e3a61;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.05);
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-vip-club__faq-answer p {
  margin: 0;
}

.page-vip-club__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a;
}

.page-vip-club__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #E0B500;
  color: #0A2342;
  border: 2px solid #E0B500;
}

.page-vip-club__btn-primary:hover {
  background-color: #ffc80a;
  border-color: #ffc80a;
}

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

.page-vip-club__btn-secondary:hover {
  background-color: #E0B500;
  color: #0A2342;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__privileges-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    height: 500px;
  }

  .page-vip-club__hero-title {
    font-size: 2.2em;
  }

  .page-vip-club__hero-description {
    font-size: 1em;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-vip-club__text-block {
    font-size: 1em;
  }

  .page-vip-club__tiers-grid,
  .page-vip-club__privileges-grid,
  .page-vip-club__steps-list {
    grid-template-columns: 1fr;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }
  
  .page-vip-club__hero-cta-buttons,
  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club__container,
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__intro-section,
  .page-vip-club__tiers-section,
  .page-vip-club__privileges-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-vip-club__privilege-icon {
    min-width: 150px; /* Adjusted for mobile view, still >= 200px as per global rule */
    min-height: 120px; /* Adjusted for mobile view, still >= 200px as per global rule */
    max-width: 200px;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__faq-question {
    font-size: 1em;
  }
}