/* style/resources-8day-promotions-analysis.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color: #333333;
  --dark-text-color: #000000;
  --light-text-color: #FFFFFF;
  --background-color: #F8F9FA; /* Assuming a light background from shared.css */
  --card-background: #FFFFFF;
  --border-color: #e0e0e0;
  --login-button-color: #EA7C07;
}

.page-resources-8day-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.page-resources-8day-promotions-analysis__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-8day-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-8day-promotions-analysis__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark-text-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-8day-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-8day-promotions-analysis__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color);
}

/* HERO Section */
.page-resources-8day-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0, #a8e0f5); /* Light blue gradient */
  color: var(--light-text-color);
}

.page-resources-8day-promotions-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-8day-promotions-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-8day-promotions-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-resources-8day-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--light-text-color); /* Ensure text is white on hero background */
}

.page-resources-8day-promotions-analysis__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-8day-promotions-analysis__intro-text {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--light-text-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-8day-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-button-color); /* Use specific login button color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-8day-promotions-analysis__cta-button:hover {
  background: #d66a00; /* Darker shade for hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.page-resources-8day-promotions-analysis__overview-section {
  background-color: var(--background-color);
}

/* Promo Types Section */
.page-resources-8day-promotions-analysis__promo-types-section {
  background-color: var(--primary-color);
  color: var(--light-text-color);
}

.page-resources-8day-promotions-analysis__promo-types-section .page-resources-8day-promotions-analysis__section-title {
  color: var(--light-text-color);
}

.page-resources-8day-promotions-analysis__promo-types-section .page-resources-8day-promotions-analysis__text-block {
  color: var(--light-text-color);
}