/* style/promotions-vip-program.css */
/*
  Body background color from shared.css is var(--background-color), which is #08160F.
  Therefore, all main text colors should be light (#F2FFF6) and secondary text colors should be slightly darker light (#A7D9B8).
  Card backgrounds should be #11271B.
*/

.page-promotions-vip-program {
  color: #F2FFF6; /* Main text color for dark background */
  background-color: transparent; /* Rely on body background */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
}

.page-promotions-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  background-color: #08160F; /* Ensure consistency with body background */
}

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

.page-promotions-vip-program__hero-content {
  padding: 40px 20px 0; /* Text below image */
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-vip-program__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  color: #F2FFF6;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-vip-program__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #F2FFF6; /* Ensure light text on dark button */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-promotions-vip-program__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* General Section Styles */
.page-promotions-vip-program__intro-section,
.page-promotions-vip-program__tiers-section,
.page-promotions-vip-program__benefits-section,
.page-promotions-vip-program__how-to-join-section,
.page-promotions-vip-program__faq-section,
.page-promotions-vip-program__conclusion-section {
  padding: 80px 0;
  background-color: #08160F; /* Consistent dark background */
}

.page-promotions-vip-program__section-title {
  font-size: 2.5rem;
  color: #F2FFF6;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-vip-program__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Main brand color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-vip-program__text-block {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Tiers Section */
.page-promotions-vip-program__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-program__tier-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-promotions-vip-program__tier-image {
  width: 100%;
  max-width: 150px; /* Adjust size for tier badges */
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-promotions-vip-program__tier-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  font-weight: 600;
  margin-bottom: 15px;
}

.page-promotions-vip-program__tier-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-promotions-vip-program__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-promotions-vip-program__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-promotions-vip-program__btn-secondary {
  background-color: transparent;
  color: #11A84E;
  border: 2px solid #11A84E;
}

.page-promotions-vip-program__btn-secondary:hover {
  background-color: #11A84E;
  color: #F2FFF6;
}

/* Benefits Section */
.page-promotions-vip-program__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-program__benefit-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-program__benefit-icon {
  width: 100%;
  max-width: 100px; /* Adjust size for benefit icons */
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-description {
  font-size: 0.9rem;
  color: #A7D9B8;
}

/* How-to-Join Section */
.page-promotions-vip-program__how-to-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-program__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__list-item:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions-vip-program__list-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions-vip-program__list-item p {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-promotions-vip-program__list-item a {
  color: #2AD16F; /* Button green for links */
  text-decoration: underline;
}

.page-promotions-vip-program__list-item a:hover {
  color: #57E38D; /* Glow */
}

/* FAQ Section */
.page-promotions-vip-program__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}