/* style/promo.css */

/* Base styles for the promo page, adhering to Black Gold theme */
.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #FFF6D6); /* Default text color from custom palette */
  background-color: var(--background, #0A0A0A); /* Default background color from custom palette */
  padding-top: 10px; /* Small top padding for the first section, body handles header offset */
}

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

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image then text */
  align-items: center;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
  padding-bottom: 60px; /* Space below content */
}

.page-promo__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure minimum height */
  max-height: 700px;
  filter: none !important; /* No filter property to change color */
}

.page-promo__hero-content {
  position: relative; /* Stays in document flow, below image */
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow, but content itself is below */
  background: rgba(17, 17, 17, 0.85); /* Card BG color with transparency for readability */
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 1; /* Ensure content is above any background elements */
  border: 1px solid var(--border, #3A2A12);
}

.page-promo__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: var(--text-main, #FFF6D6);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-promo__hero-description {
  font-size: 1.1rem;
  color: var(--text-main, #FFF6D6);
  margin-bottom: 30px;
}

.page-promo__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Section Titles and Descriptions */
.page-promo__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main, #FFF6D6);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-description {
  font-size: 1rem;
  color: var(--text-main, #FFF6D6);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Promotion Grid Section */
.page-promo__promo-grid-section {
  padding: 60px 0;
  background-color: var(--background, #0A0A0A); /* Explicit background */
}

.page-promo__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}