/* style/vip-club.css */
:root {
  --page-vip-club-primary-color: #007bff;
  --page-vip-club-secondary-color: #ffc107;
  --page-vip-club-text-dark: #333333;
  --page-vip-club-text-light: #ffffff;
  --page-vip-club-background-light: #f8f9fa;
  --page-vip-club-background-dark: #0056b3; /* Darker shade of primary for contrast */
  --page-vip-club-border-color: #e0e0e0;
}

.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-vip-club-text-dark);
  background-color: var(--page-vip-club-background-light);
}

.page-vip-club-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-vip-club-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-vip-club-section:nth-of-type(even) {
  background-color: var(--page-vip-club-background-light);
}

.page-vip-club-section-title {
  font-size: 2.5em;
  color: var(--page-vip-club-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-vip-club-hero {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--page-vip-club-primary-color) 0%, #004d99 100%); /* Darker gradient for hero background */
}

.page-vip-club-hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Slightly wider for hero */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.page-vip-club-hero-image {
  width: 100%;
  height: auto;
  max-height: 550px; /* Limit image height */
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7;
}

.page-vip-club-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  color: var(--page-vip-club-text-light);
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
  margin: 40px 20px;
  max-width: 900px;
}

.page-vip-club-main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-vip-club-text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--page-vip-club-text-light);
}

.page-vip-club-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--page-vip-club-secondary-color);
  color: var(--page-vip-club-text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-cta-button:hover {
  background: #ffdb58; /* Slightly lighter gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club-button-secondary {
  background: var(--page-vip-club-primary-color);
  color: var(--page-vip-club-text-light);
}

.page-vip-club-button-secondary:hover {
  background: var(--page-vip-club-background-dark);
  color: var(--page-vip-club-text-light);
}

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

.page-vip-club-benefit-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-vip-club-border-color);
}

.page-vip-club-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club-benefit-icon {
  width: 150px; /* Increased size for content image */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club-benefit-title {
  font-size: 1.6em;
  color: var(--page-vip-club-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-benefit-text {
  font-size: 1em;
  color: #666666;
}

/* Tiers Section */
.page-vip-club-tier-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-tier-item {
  background-color: var(--page-vip-club-background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--page-vip-club-primary-color);
  transition: all 0.3s ease;
}

.page-vip-club-tier-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--page-vip-club-secondary-color);
}

.page-vip-club-tier-name {
  font-size: 2em;
  color: var(--page-vip-club-secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.page-vip-club-tier-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  text-align: center;
}

.page-vip-club-tier-benefits-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-vip-club-tier-benefits-list li {
  background-color: #f0f0f0;
  margin-bottom: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.95em;
  color: #444444;
  display: flex;
  align-items: center;
}

.page-vip-club-tier-benefits-list li::before {
  content: '✓';
  color: var(--page-vip-club-primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.page-vip-club-how-to-upgrade {
  font-size: 1.8em;
  color: var(--page-vip-club-primary-color);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-vip-club-how-to-upgrade-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

/* How to Join Section */
.page-vip-club-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--page-vip-club-border-color);
}

.page-vip-club-step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--page-vip-club-primary-color);
  color: var(--page-vip-club-text-light);
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-vip-club-step-title {
  font-size: 1.8em;
  color: var(--page-vip-club-primary-color);
  margin-bottom: 15px;
}

.page-vip-club-step-text {
  font-size: 1em;
  color: #666666;
}

.page-vip-club-step-text a {
  color: var(--page-vip-club-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-vip-club-experience-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--page-vip-club-border-color);
}

.page-vip-club-experience-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club-experience-title {
  font-size: 1.8em;
  color: var(--page-vip-club-primary-color);
  margin-bottom: 15px;
}

.page-vip-club-experience-text {
  font-size: 1em;
  color: #666666;
}

/* FAQ Section */
.page-vip-club-faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--page-vip-club-border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--page-vip-club-background-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--page-vip-club-primary-color);
  font-weight: bold;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-vip-club-primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--page-vip-club-secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  border-top: 1px solid var(--page-vip-club-border-color);
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.8;
}

/* Blog Section */
.page-vip-club-blog {
  background-color: var(--page-vip-club-background-light);
}

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

.page-vip-club-blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-vip-club-border-color);
}

.page-vip-club-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club-blog-image {
  width: 100%;
  height: 220px; /* Fixed height for blog images */
  object-fit: cover;
  display: block;
}

.page-vip-club-blog-content {
  padding: 25px;
}

.page-vip-club-blog-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-vip-club-blog-title a {
  color: var(--page-vip-club-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-blog-title a:hover {
  text-decoration: underline;
  color: var(--page-vip-club-background-dark);
}

.page-vip-club-blog-excerpt {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-vip-club-read-more {
  display: inline-block;
  color: var(--page-vip-club-secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
}

.page-vip-club-read-more:hover {
  text-decoration: underline;
}

.page-vip-club-view-all-button {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-club-main-title {
    font-size: 2.8em;
  }
  .page-vip-club-hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-section-title {
    font-size: 2em;
  }
  .page-vip-club-benefit-icon {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .page-vip-club-hero-content {
    padding: 40px 15px;
    margin: 20px 15px;
  }
  .page-vip-club-main-title {
    font-size: 2.2em;
  }
  .page-vip-club-hero-description {
    font-size: 1em;
  }
  .page-vip-club-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-vip-club-section {
    padding: 40px 0;
  }
  .page-vip-club-section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-vip-club-benefit-item, .page-vip-club-tier-item, .page-vip-club-step-item, .page-vip-club-experience-item, .page-vip-club-blog-card {
    padding: 20px;
  }
  .page-vip-club-benefit-title, .page-vip-club-tier-name, .page-vip-club-step-title, .page-vip-club-experience-title {
    font-size: 1.4em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-main-title {
    font-size: 1.8em;
  }
  .page-vip-club-hero-description {
    font-size: 0.9em;
  }
  .page-vip-club-section-title {
    font-size: 1.8em;
  }
  .page-vip-club-benefit-icon {
    width: 100px;
  }
  .page-vip-club-tier-system, .page-vip-club-benefit-grid, .page-vip-club-steps, .page-vip-club-experience-grid, .page-vip-club-blog-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-hero-image {
    max-height: 300px;
  }
}