/* style/vip-program.css */
/* 
  Body background color from shared.css is #08160F (very dark green).
  Therefore, all text should be light for optimal contrast.
*/
.page-vip-program {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main - light text on dark background */
  background-color: #08160F; /* Background color */
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-vip-program__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-vip-program__hero-content {
  position: relative; /* Ensure content is above image if z-index is used elsewhere, but not overlapping */
  z-index: 2;
  max-width: 900px;
  margin-top: 40px; /* Space between image and content */
  padding: 0 20px;
}

.page-vip-program__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow */
}

.page-vip-program__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-vip-program__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-program__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-vip-program__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Bright green from gradient start */
  border: 2px solid #2AD16F;
}

.page-vip-program__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-vip-program__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* General Section Styling */
.page-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-vip-program__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-program__text-block a {
  color: #2AD16F; /* Link color */
  text-decoration: underline;
}

.page-vip-program__text-block a:hover {
  color: #57E38D; /* Glow on hover */
}

/* Introduction Section */
.page-vip-program__introduction-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

/* Tiers Section */
.page-vip-program__tiers-section {
  padding: 60px 0;
}