/* style/vip-program.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFF00;
  --background-color: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

.page-vip-program__section {
  padding: 60px 20px;
  text-align: center;
}

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

/* Color Contrast Fixes */
.page-vip-program__light-bg {
  background-color: var(--background-color);
  color: var(--text-color-dark);
}

.page-vip-program__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-vip-program__dark-bg .page-vip-program__text-block,
.page-vip-program__dark-bg .page-vip-program__link {
  color: var(--text-color-light);
}

.page-vip-program__dark-bg .page-vip-program__section-title {
  color: var(--text-color-light);
}

.page-vip-program__link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-vip-program__link:hover {
  color: #005a2e;
}

.page-vip-program__section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-vip-program__text-block {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: left;
}

/* HERO Section */
.page-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color), #33a060);
  color: var(--text-color-light);
}

.page-vip-program__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-vip-program__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-vip-program__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-vip-program__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-color-light);
  line-height: 1.2;
}

.page-vip-program__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-register-bg); /* Use specific register color */
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program__cta-button:hover {
  background: #a30606; /* Darker shade of register color */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-vip-program__benefits-grid,
.page-vip-program__tiers-grid,
.page-vip-program__promo-grid,
.page-vip-program__support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__benefit-card,
.page-vip-program__tier-card,
.page-vip-program__promo-card,
.page-vip-program__feature-card {
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark);
}

.page-vip-program__benefit-card:hover,
.page-vip-program__tier-card:hover,
.page-vip-program__promo-card:hover,
.page-vip-program__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-program__benefit-card img,
.page-vip-program__tier-card img,
.page-vip-program__promo-card img,
.page-vip-program__feature-card img {
  width: 100%;
  height: 250px; /* Consistent height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure images are responsive */
  display: block;
}