/* 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-vip-program__text-center {
  text-align: center;
}

/* 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);
  background: linear-gradient(135deg, var(--primary-color), #004d26); /* Darker green for gradient */
  color: var(--text-color-light);
  overflow: hidden;
}

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

.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;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-vip-program__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  color: var(--text-color-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-register-bg);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program__cta-button:hover {
  background: #a30606; /* Slightly darker red */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-vip-program__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-vip-program__intro-section, 
.page-vip-program__tiers-section, 
.page-vip-program__exclusive-events-section, 
.page-vip-program__faq-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-vip-program__dark-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

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

.page-vip-program__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__text-block strong {
  color: var(--primary-color);
}

.page-vip-program__dark-section .page-vip-program__text-block {
  color: rgba(255, 255, 255, 0.9);
}

.page-vip-program__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

/* Benefits Grid */
.page-vip-program__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-vip-program__benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-light);
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.page-vip-program__benefit-card img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-program__benefit-card p {
  font-size: 1em;
  line-height: 1.7;
  opacity: 0.9;
}
}