/* style/promo.css */

/* Base styles for the promo page content */
.page-promo {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page background color */
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Section styling */
.page-promo__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-promo__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive H2 font size */
  color: #F2C14E; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Card styling */
.page-promo__card {
  background-color: #111111; /* Card background color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6; /* Text color for card content */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Button styling */
.page-promo__btn-primary,
.page-promo__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive by default */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

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

.page-promo__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px #FFD36B; /* Glow effect */
}

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

.page-promo__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 0 15px #FFD36B; /* Glow effect */
}

.page-promo__btn-center {
  display: block;
  margin: 30px auto 0 auto;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-promo__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}