/* style/vip-program.css */

/* Base styles for the VIP program page */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF); /* Use shared background color */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}

.page-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-program__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

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

.page-vip-program__hero-description a {
  color: #FFFF00; /* Link color for hero description */
  text-decoration: underline;
}

.page-vip-program__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General Sections */
.page-vip-program__content-section {
  padding: 60px 20px;
}

.page-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-program__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #017439; /* Brand color for titles */
}

.page-vip-program__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-vip-program__section-intro a {
  color: #017439;
  text-decoration: underline;
}

/* VIP Levels Grid */
.page-vip-program__vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__vip-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-vip-program__vip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program__vip-card-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-vip-program__vip-card-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
}

.page-vip-program__vip-card-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-vip-program__vip-card-description a {
  color: #017439;
  text-decoration: underline;
}

.page-vip-program__vip-card-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.page-vip-program__vip-card-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95em;
  color: #555555;
}

.page-vip-program__vip-card-features li::before {
  content: '✓';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-program__vip-note {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #555555;
}

.page-vip-program__vip-note a {
  color: #017439;
  text-decoration: underline;
}

/* Features Grid (Dark Section) */
.page-vip-program__dark-section {
  background: #017439; /* Brand primary color for dark section */
  color: #ffffff; /* White text for dark background */
}

.page-vip-program__dark-section .page-vip-program__section-title {
  color: #ffffff;
}

.page-vip-program__text-light {
  color: #f0f0f0;
}

.page-vip-program__text-light a {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
}

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

.page-vip-program__feature-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards on dark section */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-vip-program__feature-card:hover {
  background: rgba(255, 255, 255, 0.2);
}