/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
  background-color: #121212; /* Matches body background from shared.css */
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.page-promotions__dark-bg {
  background-color: #000080; /* Navy blue auxiliary color */
  color: #ffffff;
}

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

.page-promotions__dark-section {
  background-color: #000080; /* Navy blue auxiliary color */
  color: #ffffff;
}

.page-promotions__heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold primary color */
  font-weight: bold;
}

.page-promotions__sub-heading {
  font-size: 2.2em;
  margin-bottom: 25px;
  color: #FFD700; /* Gold primary color */
  font-weight: bold;
}

.page-promotions__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions__text-center {
  text-align: center;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

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