/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from shared.css body, but explicitly set for clarity */
}

/* Container for consistent content width */
.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-vip-club__hero-section,
.page-vip-club__introduction-section,
.page-vip-club__tiers-section,
.page-vip-club__exclusive-benefits-section,
.page-vip-club__how-to-join-section,
.page-vip-club__faq-section,
.page-vip-club__cta-section {
  padding: 80px 0;
}

/* Specific background colors for sections */
.page-vip-club__dark-bg {
  background-color: #1a1a1a; /* Body background color */
  color: #ffffff;
}

.page-vip-club__light-bg {
  background-color: #262626; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 80px;
}

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

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

.page-vip-club__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

/* General Titles */
.page-vip-club__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}