/* style/promotions.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #1a1a1a;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
}

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

.page-promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-promotions section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-promotions .section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions .section-description {
  font-size: 18px;
  color: var(--text-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-promotions .hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.page-promotions .hero-content {
  max-width: 800px;
}

.page-promotions .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions .hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions .hero-image-wrapper {
  width: 80%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions .hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-color);
}

.page-promotions .cta-button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .cta-button.large {
  padding: 22px 60px;
  font-size: 24px;
}

.page-promotions .cta-button-small {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--secondary-color);
  margin-top: 20px;
}

.page-promotions .cta-button-small:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Promotion Overview Cards */
.page-promotions .promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions .card {
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions .card-img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions .card-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions .card-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions .card-title a:hover {
  color: var(--primary-color);
}

.page-promotions .card-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions .card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
}

.page-promotions .card-button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Detailed Promotion Sections */
.page-promotions .detailed-promotion {
  padding: 80px 0;
}

.page-promotions .detailed-promotion .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-promotions .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promotions .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-promotions .text-content {
  flex: 1;
  padding-right: 20px;
}

.page-promotions .image-content {
  flex: 1;
  min-width: 300px; /* Ensure image doesn't get too small */
}

.page-promotions .content-img {
  width: 100%;
  height: auto;
  max-height: 400px; /* Limit height for aesthetic */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions .sub-title {
  font-size: 28px;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions .numbered-list, .page-promotions .bullet-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions .numbered-list li, .page-promotions .bullet-list li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-promotions .numbered-list li::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions .bullet-list li::before {
  content: "\2022"; /* Unicode bullet */
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
}

/* Promotion Events Grid */
.page-promotions .promotion-events {
  background-color: var(--background-light);
}

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

.page-promotions .event-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions .event-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-promotions .event-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin: 20px 15px 10px 15px;
  font-weight: bold;
}

.page-promotions .event-text {
  font-size: 15px;
  color: var(--text-dark);
  padding: 0 15px 20px 15px;
}

.page-promotions .event-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
  margin-bottom: 20px;
}

.page-promotions .event-button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* How-To-Claim Steps */
.page-promotions .how-to-claim {
  background-color: #f0f0f0;
}

.page-promotions .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions .step-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions .step-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions .step-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions .step-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-promotions .step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
}

.page-promotions .step-button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Terms and Conditions */
.page-promotions .terms-conditions {
  background-color: var(--card-bg);
}

/* FAQ Section */
.page-promotions .faq-section {
  background-color: var(--background-light);
  padding-bottom: 80px;
}

.page-promotions .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}