/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* body background is #0a0a0a from shared.css */
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 500px;
  color: #ffffff;
  background-color: #0A2463; /* Primary brand color for hero background */
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

.page-promotions__hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
  position: relative;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  filter: brightness(0.7); /* Darken image for better contrast */
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Auxiliary brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #f0f0f0;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #1a1a1a; /* Alternate background for visual separation */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary brand color for section titles */
  line-height: 1.3;
}

.page-promotions__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #cccccc;
}