/* style/vip-club.css */

/* Base Styles */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-vip-club__text-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-vip-club__text-link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

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

.page-vip-club__btn-primary:hover {
  background-color: #ffffff;
  color: #0A1931;
  border-color: #ffffff;
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-vip-club__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.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.7);
  z-index: 2;
}

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

.page-vip-club__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* About Section */
.page-vip-club__about-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-vip-club__about-section p {
  text-align: left;
  margin-bottom: 20px;
}

.page-vip-club__image-content {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  display: block;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2); /* Slightly different dark background */
}

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

.page-vip-club__tier-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.page-vip-club__tier-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #f0f0f0;
}

.page-vip-club__tier-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__tier-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

/* Exclusive Offers */
.page-vip-club__exclusive-offers {
  padding: 80px 0;
  background-color: #0A1931;
}

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

.page-vip-club__offer-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__offer-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-vip-club__offer-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

/* Video Section */
.page-vip-club__video-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2);
  text-align: center;
}

.page-vip-club__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.page-vip-club__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-vip-club__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #0A1931;
}

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

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.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;
  font-size: 1em;
  line-height: 1.6;
}

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

/* CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
  text-align: center;
}

.page-vip-club__cta-section .page-vip-club__btn-primary,
.page-vip-club__cta-section .page-vip-club__btn-secondary {
  margin-top: 30px;
  margin-bottom: 10px;
}

/* 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;
  }
  .page-vip-club__section-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: auto;
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club__hero-content {
    padding: 15px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-vip-club__cta-section .page-vip-club__btn-primary,
  .page-vip-club__cta-section .page-vip-club__btn-secondary {
    margin-top: 15px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 0.95em;
  }
  .page-vip-club__about-section,
  .page-vip-club__tiers-section,
  .page-vip-club__exclusive-offers,
  .page-vip-club__video-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    padding: 40px 0;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__image-content {
    margin: 20px 0;
  }
  .page-vip-club__video-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-vip-club__faq-answer {
    padding: 0 15px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 10px 15px 15px 15px;
  }
  .page-vip-club__tier-grid,
  .page-vip-club__offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
}

/* Ensure content area images don't get too small */
.page-vip-club__about-section img,
.page-vip-club__tiers-section img,
.page-vip-club__exclusive-offers img {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filter on images */
.page-vip-club img {
  filter: none;
}