/* style/promotions.css */

/* Base styles for the promotions page content */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--neon-dark-bg1); /* Assumed dark background from shared, will adjust section backgrounds accordingly */
  padding-top: 0; /* Handled by specific section or container if shared.css sets body padding-top */
}

/* Ensure the first content section has appropriate padding-top if body padding is not set by shared.css */
.page-promotions__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
  background-color: #26A9E0; /* Brand primary color for hero */
  color: #ffffff; /* White text for dark background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-promotions__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-promotions__tagline {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: none; /* Ensure no filter is applied */
}

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: inherit;
}

.page-promotions__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

.page-promotions__paragraph--small {
    font-size: 0.9em;
}

.page-promotions__link {
    color: #EA7C07;
    text-decoration: underline;
}

.page-promotions__link:hover {
    color: #ff9933;
}

/* CTA Buttons */
.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-promotions__cta-buttons--centered {
  margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: auto;
}

.page-promotions__btn-primary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

.page-promotions__hero-section .page-promotions__btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-promotions__light-bg .page-promotions__btn-secondary {
  color: #26A9E0;
  border-color: #26A9E0;
}

.page-promotions__dark-bg .page-promotions__btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

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

.page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
    margin-top: 15px;
}

.page-promotions__btn-small:hover {
    background-color: #1a7fb3;
    border-color: #1a7fb3;
}

/* Feature list (Why choose section) */
.page-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

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

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

/* Promotion Types Grid */
.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none; /* Ensure no filter is applied */
}

.page-promotions__promotion-card {
  padding: 25px;
}

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

.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: 0.95em;
  color: #555555;
  flex-grow: 1;
}

/* How-to-claim steps */
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-promotions__step-number {
  position: absolute;
  top: 15px;
  left: 30px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

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

.page-promotions__step-description a {
    color: #EA7C07;
    text-decoration: underline;
}

.page-promotions__step-description a:hover {
    color: #ff9933;
}

/* Terms and Conditions */
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__terms-item {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-promotions__terms-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #ffffff;
}
}