/* style/vip-club.css */

/* General Page Styles */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-vip-club__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-vip-club__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #0056b3;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-vip-club__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

/* Hero Section */
.page-vip-club__hero {
  background: linear-gradient(135deg, #0056b3 0%, #003d80 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffd700; /* Gold for title */
  line-height: 1.2;
}

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

.page-vip-club__hero-image {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -100px; /* Adjust as needed */
  opacity: 0.15;
  z-index: 0;
  width: 500px;
  height: auto;
}

.page-vip-club__hero-image .page-vip-club__image {
  width: 100%;
  height: auto;
  transform: rotate(15deg); /* Slight rotation for dynamic feel */
}

/* CTA Button */
.page-vip-club__cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #003d80; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #ffd700;
}

.page-vip-club__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip-club__cta-button--gold {
  background-color: #ffd700;
  color: #003d80;
  border-color: #ffd700;
}

.page-vip-club__cta-button--primary {
  background-color: #0056b3;
  color: #fff;
  border-color: #0056b3;
}

.page-vip-club__cta-button--primary:hover {
  background-color: #003d80;
  border-color: #003d80;
}

/* Features Grid */
.page-vip-club__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-vip-club__feature-item:hover {
  transform: translateY(-10px);
}

.page-vip-club__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold shadow */
}

.page-vip-club__feature-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-vip-club__feature-description {
  color: #666;
}

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

.page-vip-club__detail-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-vip-club__detail-item:hover {
  transform: translateY(-5px);
}

.page-vip-club__detail-title {
  font-size: 1.6em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-vip-club__detail-title a {
  color: #0056b3;
  text-decoration: none;
}

.page-vip-club__detail-title a:hover {
  text-decoration: underline;
}

.page-vip-club__detail-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__detail-button {
  display: inline-block;
  background-color: #ffd700;
  color: #003d80;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-vip-club__detail-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Exclusive Benefits List */
.page-vip-club__exclusive-benefits .page-vip-club__section-text {
  text-align: left;
}

.page-vip-club__benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
}

.page-vip-club__benefits-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #0056b3;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-vip-club__benefits-list li strong {
  color: #0056b3;
}

/* Commitment Section */
.page-vip-club__commitment .page-vip-club__image--wide {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-vip-club__faq {
  text-align: left;
}

.page-vip-club__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-club__faq-question {
  font-size: 1.3em;
  color: #0056b3;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-club__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #ffd700;
}

.page-vip-club__faq-question.active::after {
  content: '-';
}

.page-vip-club__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  display: none; /* Hidden by default */
}

.page-vip-club__faq-answer a {
  color: #0056b3;
  text-decoration: none;
}

.page-vip-club__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-vip-club__hero {
    padding: 80px 20px;
  }

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

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

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__features-grid,
  .page-vip-club__detail-links {
    grid-template-columns: 1fr;
  }

  .page-vip-club__hero-image {
    position: static;
    opacity: 0.1;
    margin-top: 30px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }

  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-club__section {
    padding: 40px 15px;
  }

  .page-vip-club__feature-item,
  .page-vip-club__detail-item {
    padding: 20px;
  }

  .page-vip-club__feature-icon {
    width: 50px;
    height: 50px;
  }
}