/* style/promotions-vip-benefits.css */

/* Base Styles */
.page-promotions-vip-benefits {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color, #FFFFFF); /* Ensure body background is white, text is dark */
}

.page-promotions-vip-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-vip-benefits__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-vip-benefits__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promotions-vip-benefits__btn-primary,
.page-promotions-vip-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-vip-benefits__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-vip-benefits__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-promotions-vip-benefits__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-vip-benefits__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7fb3;
  border-color: #1a7fb3;
}

/* Hero Section */
.page-promotions-vip-benefits__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #f0f8ff; /* Light background for hero */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden; /* Ensure content doesn't spill */
}

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

.page-promotions-vip-benefits__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* White text for contrast over image */
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promotions-vip-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-promotions-vip-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Benefits Overview Section */
.page-promotions-vip-benefits__benefits-overview-section {
  padding: 80px 0;
}

.page-promotions-vip-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-benefits__benefit-card {
  background-color: #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;
  color: #333333; /* Dark text for light card background */
}

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

.page-promotions-vip-benefits__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px; /* Added for image style */
}

.page-promotions-vip-benefits__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-benefits__card-text {
  font-size: 1em;
  color: #555555;
}

/* How To Join Section */
.page-promotions-vip-benefits__how-to-join-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF; /* White text for dark background */
}

.page-promotions-vip-benefits__how-to-join-section .page-promotions-vip-benefits__section-title,
.page-promotions-vip-benefits__how-to-join-section .page-promotions-vip-benefits__section-description {
  color: #FFFFFF;
}

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

.page-promotions-vip-benefits__step-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on brand background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-benefits__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.page-promotions-vip-benefits__step-card .page-promotions-vip-benefits__card-title {
  color: #FFFFFF;
  margin-top: 50px; /* Adjust for step number */
}

.page-promotions-vip-benefits__step-card .page-promotions-vip-benefits__card-text {
  color: #f0f0f0;
}

.page-promotions-vip-benefits__cta-center {
  text-align: center;
  margin-top: 60px;
}

/* Why Choose VIP Section */
.page-promotions-vip-benefits__why-vip-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}