/* style/promo.css */

/* General Page Styles */
.page-promo {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main on dark background */
  background-color: #0A0A0A; /* Background color */
}

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

.page-promo__section {
  padding: 60px 0;
  position: relative;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* Hero Section - Revised for "Image Above Text" */
.page-promo__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 60px; 
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-promo__hero-layout {
  display: flex;
  flex-direction: column; /* Image then content */
  align-items: center;
  gap: 30px; /* Space between image and content */
}

.page-promo__hero-image-area {
  width: 100%;
  max-width: 1200px; /* Max width for the image area */
  position: relative; /* For carousel dots positioning */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-carousel {
  position: relative; /* Changed from absolute to relative for normal flow */
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (height / width * 100) */
  height: 0; /* Important for aspect ratio */
  overflow: hidden;
}

.page-promo__hero-slide {
  position: absolute; /* Slides within carousel can be absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.page-promo__hero-slide.active {
  opacity: 1;
}

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

.page-promo__hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* Dots on top of image */
  display: flex;
  gap: 10px;
}

.page-promo__hero-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promo__hero-dot.active {
  background-color: #F2C14E;
}

.page-promo__hero-content-area {
  text-align: center;
  max-width: 900px;
}

.page-promo__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Clamp for H1, not fixed large value */
  color: #FFF6D6;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-promo__hero-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
}

/* CTA Buttons */
.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  margin-top: 30px;
}

.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__btn-small,
.page-promo__btn-card {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Ensure buttons adapt */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
  color: #333333; /* Dark text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}