/* style/resources-vb68-latest-promotions.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-resources-vb68-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* White text for dark body background */
  background-color: transparent; /* Let body background from shared.css show */
}

.page-resources-vb68-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-vb68-latest-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: var(--dark-bg-1, #0d0d0d); /* Use dark background for hero */
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  padding-bottom: 60px;
  color: #ffffff;
  overflow: hidden;
}

.page-resources-vb68-latest-promotions__hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-vb68-latest-promotions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-vb68-latest-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-vb68-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-vb68-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for better text contrast */
}

/* Video Section */
.page-resources-vb68-latest-promotions__video-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background for video section */
  color: #ffffff;
  text-align: center;
}

.page-resources-vb68-latest-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px; /* Max width for video */
  margin: 20px auto;
  background-color: #000;
  border-radius: 10px;
}

.page-resources-vb68-latest-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-resources-vb68-latest-promotions__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Make sure the link overlay is above the video */
  cursor: pointer;
}

/* Section Titles */
.page-resources-vb68-latest-promotions__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-vb68-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-resources-vb68-latest-promotions__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Promotion Types Section */
.page-resources-vb68-latest-promotions__promotions-types {
  padding: 60px 0;
  background-color: #0d0d0d; /* Dark background */
}

.page-resources-vb68-latest-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-vb68-latest-promotions__promotion-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* White text for cards */
}

.page-resources-vb68-latest-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-vb68-latest-promotions__card-title {
  font-size: 1.6em;
  color: #017439; /* Brand color for card titles */
  margin-bottom: 15px;
}

.page-resources-vb68-latest-promotions__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 150px; /* Enforce min size */
}

.page-resources-vb68-latest-promotions__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  flex-grow: 1;
}

.page-resources-vb68-latest-promotions__card-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95em;
}

.page-resources-vb68-latest-promotions__card-list li::before {
  content: '✓';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How-to-claim section */
.page-resources-vb68-latest-promotions__how-to-claim-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-resources-vb68-latest-promotions__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-vb68-latest-promotions__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-vb68-latest-promotions__guide-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 20px;
}

.page-resources-vb68-latest-promotions__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 150px;
}

.page-resources-vb68-latest-promotions__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-resources-vb68-latest-promotions__guide-list li {
  margin-bottom: 10px;
}

/* Benefits Section */
.page-resources-vb68-latest-promotions__benefits-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Dark background */
  color: #ffffff;
}

.page-resources-vb68-latest-promotions__benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-resources-vb68-latest-promotions__benefits-image {
  flex: 1 1 40%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px;
  min-height: 150px;
}

.page-resources-vb68-latest-promotions__benefits-list {
  flex: 1 1 50%;
  list-style: none;
  padding: 0;
}

.page-resources-vb68-latest-promotions__benefits-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
  font-size: 1.1em;
}

.page-resources-vb68-latest-promotions__benefits-list li::before {
  content: '⭐'; /* Star emoji for bullet point */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

/* FAQ Section */
.page-resources-vb68-latest-promotions__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-resources-vb68-latest-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-resources-vb68-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-vb68-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #017439; /* Brand green for question background */
  color: #ffffff; /* White text for contrast */
  transition: background-color 0.3s ease;
}

.page-resources-vb68-latest-promotions__faq-question:hover {
  background-color: #005f2f; /* Slightly darker green on hover */
}