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

/* Base styles for the page */
.page-vip-club-tiers-privileges {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Consistent with body background */
}

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

/* Hero Section */
.page-vip-club-tiers-privileges__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure sufficient height */
  text-align: center;
  overflow: hidden;
  padding: 60px 20px; /* General padding, not for header offset */
}

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

.page-vip-club-tiers-privileges__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff; /* Ensure light text on dark/dimmed background */
}

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

.page-vip-club-tiers-privileges__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club-tiers-privileges__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section titles and descriptions */
.page-vip-club-tiers-privileges__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #017439; /* Brand primary color for titles */
}