/* style/promotions-vip-exclusive-offers.css */

/* Base styles for the page content wrapper */
.page-promotions-vip-exclusive-offers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Inherit from body, or use transparent if shared.css sets body background */
  /* Ensure padding-top for fixed header offset */
  padding-top: var(--header-offset, 120px);
}

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

/* Hero Section */
.page-promotions-vip-exclusive-offers__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

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

.page-promotions-vip-exclusive-offers__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-promotions-vip-exclusive-offers__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-vip-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

/* General Section Styles */
.page-promotions-vip-exclusive-offers__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-offers__subsection-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff; /* Default for sections without specific background */
}

.page-promotions-vip-exclusive-offers__text-block--small {
  font-size: 0.9em;
  text-align: center;
  color: #cccccc;
  margin-top: 15px;
}

.page-promotions-vip-exclusive-offers__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-promotions-vip-exclusive-offers__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Specific Section Backgrounds */
.page-promotions-vip-exclusive-offers__intro-section,
.page-promotions-vip-exclusive-offers__how-to-join-section,
.page-promotions-vip-exclusive-offers__faq-section {
  background-color: #1a1a1a; /* Darker background for content contrast */
  color: #ffffff;
}
.page-promotions-vip-exclusive-offers__intro-section .page-promotions-vip-exclusive-offers__section-title,
.page-promotions-vip-exclusive-offers__intro-section .page-promotions-vip-exclusive-offers__subsection-title,
.page-promotions-vip-exclusive-offers__how-to-join-section .page-promotions-vip-exclusive-offers__section-title,
.page-promotions-vip-exclusive-offers__faq-section .page-promotions-vip-exclusive-offers__section-title {
  color: #017439; /* Keep brand color for titles */
}
.page-promotions-vip-exclusive-offers__intro-section .page-promotions-vip-exclusive-offers__text-block,
.page-promotions-vip-exclusive-offers__intro-section .page-promotions-vip-exclusive-offers__list,
.page-promotions-vip-exclusive-offers__intro-section .page-promotions-vip-exclusive-offers__list-item,
.page-promotions-vip-exclusive-offers__how-to-join-section .page-promotions-vip-exclusive-offers__text-block,
.page-promotions-vip-exclusive-offers__how-to-join-section .page-promotions-vip-exclusive-offers__step-description,
.page-promotions-vip-exclusive-offers__faq-section .page-promotions-vip-exclusive-offers__text-block,
.page-promotions-vip-exclusive-offers__faq-section .page-promotions-vip-exclusive-offers__faq-answer p {
  color: #f0f0f0; /* Light text for dark background */
}


.page-promotions-vip-exclusive-offers__dark-section {
  background-color: #017439; /* Main brand color for dark sections */
  color: #ffffff;
}
.page-promotions-vip-exclusive-offers__dark-section .page-promotions-vip-exclusive-offers__section-title {
  color: #ffffff; /* White title on brand color background */
}
.page-promotions-vip-exclusive-offers__dark-section .page-promotions-vip-exclusive-offers__text-block {
  color: #f0f0f0; /* Slightly off-white for readability */
}

/* Images */
.page-promotions-vip-exclusive-offers__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-vip-exclusive-offers__image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* VIP Tiers Cards */
.page-promotions-vip-exclusive-offers__tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-promotions-vip-exclusive-offers__card {
  background-color: rgba(255, 255, 255, 0.1); /* Light background on dark body */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

.page-promotions-vip-exclusive-offers__card-title {
  font-size: 1.5em;
  color: #FFFF00; /* Special color for VIP tier titles */
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-offers__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-promotions-vip-exclusive-offers__benefit-card {
  background-color: #ffffff; /* White background for benefits card */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for white background */
}

.page-promotions-vip-exclusive-offers__benefit-card .page-promotions-vip-exclusive-offers__card-title {
  color: #017439; /* Brand color for titles on white background */
  font-size: 1.4em;
}

.page-promotions-vip-exclusive-offers__benefit-card .page-promotions-vip-exclusive-offers__card-text {
  color: #333333;
}


/* How to Join Steps */
.page-promotions-vip-exclusive-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}