:root {
  --page-vip-club-primary-color: #26A9E0;
  --page-vip-club-secondary-color: #FFFFFF;
  --page-vip-club-text-dark: #333333;
  --page-vip-club-text-light: #FFFFFF;
  --page-vip-club-login-color: #EA7C07;
  --page-vip-club-background-light: #FFFFFF;
  --page-vip-club-background-dark: #26A9E0; /* Using brand color for dark background sections */
}

/* Base styles for the page content */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-vip-club-text-dark); /* Default text color for light backgrounds */
  background-color: var(--page-vip-club-background-light); /* Default light background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.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;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 3;
  color: var(--page-vip-club-text-light);
  max-width: 900px;
  padding: 20px;
}

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-vip-club__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}