/* style/promo.css */
/* Base styles and color scheme */
.page-promo {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
}

.page-promo__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-promo__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

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

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

.page-promo__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F2C14E; /* Main color for titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__sub-title {
  font-size: clamp(1.5em, 3vw, 2em);
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promo__text-link {
  color: #FFD36B; /* Use Glow color for inline links */
  text-decoration: underline;
}

.page-promo__text-link:hover {
  color: #F2C14E; /* Main color on hover */
}

/* Buttons */
.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Added for mobile responsiveness */
}

.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensures padding doesn't increase total width */
  white-space: normal; /* Allows text to wrap */
  word-wrap: break-word; /* Allows text to break words */
  max-width: 100%; /* Ensures button does not overflow container */
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-promo__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color for border */
}

.page-promo__btn-secondary:hover {
  background-color: #F2C14E; /* Main color */
  color: #0A0A0A; /* Dark text */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-promo__btn-link {
  background: none;
  border: none;
  color: #FFD36B; /* Glow color for links */
  text-decoration: underline;
  padding: 5px 10px;
  font-size: 1em;
}

.page-promo__btn-link:hover {
  color: #F2C14E; /* Main color on hover */
}

.page-promo__btn-center {
  margin-left: auto;
  margin-right: auto;
  display: block; /* Make it a block element to center with margin auto */
  width: fit-content; /* Ensure it doesn't take full width */
  margin-top: 40px;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh; /* Ensure hero section takes up significant viewport height */
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability */
}