/* style/promotions.css */

/* Base styles for the page content, considering dark body background */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background is #0a0a0a from shared.css */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: #f0f0f0;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  min-height: 600px;
  overflow: hidden;
  text-align: center;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bold;
}

.page-promotions__hero-description {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin-right: 15px;
}

.page-promotions__btn-primary:hover {
  background-color: #1a8ad6;
  border-color: #1a8ad6;
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-promotions__intro-section .page-promotions__section-title {
  color: #26A9E0;
}

.page-promotions__intro-section .page-promotions__text-block {
  color: #333333;
}

/* Types Section */
.page-promotions__types-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Darker background, still contrasts with white text */
}

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

.page-promotions__card {
  background-color: #ffffff; /* Light background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px; /* Space for text below image */
  color: #333333; /* Dark text for light card background */
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promotions__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
}

/* Video Section */
.page-promotions__video-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Body background color for consistency */
}

.page-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 30px;
  border-radius: 12px;
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* How-to-Claim Section */
.page-promotions__how-to-claim-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__how-to-claim-section .page-promotions__section-title {
  color: #26A9E0;
}

.page-promotions__how-to-claim-section .page-promotions__text-block {
  color: #333333;
}

.page-promotions__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__numbered-list li {
  counter-increment: item;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 60px; /* Space for the number */
}

.page-promotions__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions__numbered-list h3 {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.page-promotions__numbered-list h3 a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions__numbered-list h3 a:hover {
  text-decoration: underline;
}

.page-promotions__numbered-list p {
  font-size: 1.1em;
  color: #555555;
  margin-top: 0;
}

/* Benefits Section */
.page-promotions__benefits-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-promotions__benefit-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #333333;
}

.page-promotions__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__benefit-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions__benefit-description {
  font-size: 1em;
  color: #555555;
}

/* Terms Section */
.page-promotions__terms-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__terms-section .page-promotions__section-title {
  color: #26A9E0;
}

.page-promotions__terms-section .page-promotions__text-block {
  color: #333333;
}

.page-promotions__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__bullet-list li {
  background: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
}

.page-promotions__bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 20px;
  color: #26A9E0;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions__bullet-list h3 {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 8px;
}

.page-promotions__bullet-list p {
  font-size: 1em;
  color: #555555;
}