/* style/vip-club-privileges.css */

/* Base Styles */
.page-vip-club-privileges {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body or default dark */
}

.page-vip-club-privileges__section-title {
  font-size: 2.5rem;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-privileges__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-vip-club-privileges__text-block a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-privileges__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-vip-club-privileges__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #4A148C; /* Main brand color */
  color: #ffffff;
  overflow: hidden;
  min-height: 600px;
  padding-top: var(--header-offset, 120px);
}

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

.page-vip-club-privileges__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
  filter: brightness(0.7); /* Darken image slightly */
}

.page-vip-club-privileges__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-vip-club-privileges__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for hero title */
  font-weight: bold;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.page-vip-club-privileges__hero-description {
  font-size: 1.4rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club-privileges__btn-primary,
.page-vip-club-privileges__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club-privileges__btn-primary {
  background-color: #FFD700; /* Gold primary button */
  color: #4A148C; /* Purple text for contrast */
  border: 2px solid #FFD700;
}

.page-vip-club-privileges__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip-club-privileges__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary */
  border: 2px solid #FFD700;
}

.page-vip-club-privileges__btn-secondary:hover {
  background-color: #FFD700;
  color: #4A148C;
  transform: translateY(-3px);
}

/* Content Area Base */
.page-vip-club-privileges__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Section Backgrounds */
.page-vip-club-privileges__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-vip-club-privileges__light-bg {
  background-color: #2a2a4e; /* Slightly lighter shade of purple for contrast with dark */
  color: #ffffff;
}

/* Image Wrapper for Content Images */
.page-vip-club-privileges__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club-privileges__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Levels Section */
.page-vip-club-privileges__levels-section {
  padding: 60px 20px;
}

.page-vip-club-privileges__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-club-privileges__level-card {
  background-color: #4A148C; /* Brand purple for cards */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
  color: #ffffff;
}

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

.page-vip-club-privileges__level-title {
  font-size: 1.8rem;
  color: #FFD700; /* Gold for level titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-privileges__level-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-vip-club-privileges__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club-privileges__level-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ffffff;
}

/* Privileges Section */
.page-vip-club-privileges__privileges-section {
  padding: 60px 20px;
}

.page-vip-club-privileges__privileges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-club-privileges__privilege-card {
  background-color: #2a2a4e; /* Lighter purple for privilege cards */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #4A148C;
  color: #ffffff;
}

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

.page-vip-club-privileges__privilege-title {
  font-size: 1.6rem;
  color: #FFD700; /* Gold for privilege titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-privileges__privilege-card p {
  font-size: 1rem;
  color: #f0f0f0;
}

/* How To Join Section */
.page-vip-club-privileges__how-to-join-section {
  padding: 60px 20px;
}

.page-vip-club-privileges__step-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-vip-club-privileges__step-item {
  background-color: #4A148C;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
  position: relative;
  color: #ffffff;
}

.page-vip-club-privileges__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #4A148C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-vip-club-privileges__step-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 10px;
  padding-left: 30px; /* Make space for the counter */
}

.page-vip-club-privileges__step-item p {
  font-size: 1rem;
  padding-left: 30px; /* Make space for the counter */
  color: #f0f0f0;
}

/* FAQ Section */
.page-vip-club-privileges__faq-section {
  padding: 60px 20px;
}

.page-vip-club-privileges__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club-privileges__faq-item {
  background-color: #2a2a4e;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #4A148C;
  color: #ffffff;
}

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

.page-vip-club-privileges__faq-question:hover {
  background-color: #5c1e9e;
}

.page-vip-club-privileges__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.2rem;
  font-weight: bold;
}

.page-vip-club-privileges__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-club-privileges__faq-item.active .page-vip-club-privileges__faq-toggle {
  transform: rotate(0deg); /* Explicitly set for '-' */
}

.page-vip-club-privileges__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-vip-club-privileges__faq-item.active .page-vip-club-privileges__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px;
}

.page-vip-club-privileges__faq-answer p {
  margin: 0;
  font-size: 1rem;
}

/* Conclusion Section */
.page-vip-club-privileges__conclusion-section {
  padding: 60px 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-privileges__hero-title {
    font-size: 3rem;
  }
  .page-vip-club-privileges__hero-description {
    font-size: 1.2rem;
  }
  .page-vip-club-privileges__section-title {
    font-size: 2rem;
  }
  .page-vip-club-privileges__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-vip-club-privileges {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club-privileges__hero-section {
    padding: 60px 15px;
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-vip-club-privileges__hero-title {
    font-size: 2.5rem;
  }
  .page-vip-club-privileges__hero-description {
    font-size: 1rem;
  }
  .page-vip-club-privileges__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-privileges__btn-primary,
  .page-vip-club-privileges__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-club-privileges__content-area,
  .page-vip-club-privileges__levels-section,
  .page-vip-club-privileges__privileges-section,
  .page-vip-club-privileges__how-to-join-section,
  .page-vip-club-privileges__faq-section,
  .page-vip-club-privileges__conclusion-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-vip-club-privileges__section-title {
    font-size: 1.8rem;
  }
  .page-vip-club-privileges__level-card,
  .page-vip-club-privileges__privilege-card,
  .page-vip-club-privileges__faq-item {
    padding: 20px;
  }
  .page-vip-club-privileges__level-title,
  .page-vip-club-privileges__privilege-title,
  .page-vip-club-privileges__step-title {
    font-size: 1.5rem;
  }
  .page-vip-club-privileges img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club-privileges__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-vip-club-privileges__faq-question h3 {
    font-size: 1rem;
  }
  .page-vip-club-privileges__step-item::before {
    left: 10px;
    top: 15px;
    transform: none;
  }
  .page-vip-club-privileges__step-title,
  .page-vip-club-privileges__step-item p {
    padding-left: 50px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-privileges__hero-title {
    font-size: 2rem;
  }
  .page-vip-club-privileges__section-title {
    font-size: 1.5rem;
  }
  .page-vip-club-privileges__level-title,
  .page-vip-club-privileges__privilege-title,
  .page-vip-club-privileges__step-title {
    font-size: 1.3rem;
  }
}