/* style/promotions.css */

/* Base Styles & Global Resets within Scope */
.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-promotions__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700; /* Gold color for main titles */
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions__text-block {
  flex: 1;
}

.page-promotions__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-promotions__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__image-block {
  flex: 1;
  text-align: center;
}

.page-promotions__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0; /* Assumes shared.css sets padding-top on body */
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px; /* Minimum height for visual impact */
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Fallback background */
}

.page-promotions__hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-promotions__hero-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}