/* style/promotions.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-promotions {
  background-color: var(--background-color); /* Matches --bg-color from shared.css if set, otherwise uses this */
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--deep-green-color);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image container */
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 15px;
  /* clamp for responsive font size */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-promotions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--card-bg-color);
  overflow: hidden;
}

.page-promotions__video-container {
  width: 100%; /* Important for desktop flex */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__video-title {
  color: var(--text-main-color);
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.page-promotions__video-description {
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.page-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-promotions__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__section-title {
  color: var(--gold-color);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 25px;
  text-align: center;
}

.page-promotions__sub-title {
  color: var(--text-main-color);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions__paragraph {
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-promotions__text-main {
  color: var(--text-main-color);
  font-weight: bold;
}

.page-promotions__text-secondary {
  color: var(--text-secondary-color);
}