.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

/* 🚨 HERO / Promo Hero Section */
.page-index__promo-hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  margin-bottom: 60px; /* Space between promo hero and carousel */
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #000000; /* Dark text on light brand background for contrast */
}

.page-index__promo-hero-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-index__promo-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index__promo-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index__promo-hero-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-index__promo-hero-content {
  text-align: left;
  padding: 20px;
}

.page-index__promo-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #000000;
}

.page-index__promo-hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}

.page-index__promo-hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 30px;
  color: #444444;
}

.page-index__promo-hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text on bright button */
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index__promo-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}