/* style/promotions.css */

/* Base styles for the page promotions section */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

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

/* Color palette */
.page-promotions__primary-color { color: #1A237E; }
.page-promotions__secondary-color { color: #FFD700; }
.page-promotions__background-light { background-color: #f8f8f8; }
.page-promotions__background-dark { background-color: #1A237E; }
.page-promotions__text-dark { color: #1A237E; }
.page-promotions__text-light { color: #FFFFFF; }
.page-promotions__highlight { color: #FFD700; }

/* Hero Section */
.page-promotions__hero {
  position: relative;
  background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%); /* Dark indigo gradient */
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.page-promotions__hero-content {
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold title for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

/* General Section Styling */
.page-promotions__intro, .page-promotions__list, .page-promotions__terms, .page-promotions__how-to-join, .page-promotions__faq, .page-promotions__cta {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__intro { background-color: #FFFFFF; }
.page-promotions__list { background-color: #f0f2f5; }
.page-promotions__terms { background-color: #FFFFFF; }
.page-promotions__how-to-join { background-color: #f0f2f5; }
.page-promotions__faq { background-color: #FFFFFF; }
.page-promotions__cta { 
  background: linear-gradient(90deg, #1A237E, #303F9F);
  color: #FFFFFF;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #1A237E; /* Dark indigo for section titles */
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-promotions__cta .page-promotions__section-title {
  color: #FFD700; /* Gold for CTA title */
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-promotions__cta .page-promotions__section-description {
  color: #e0e0e0;
}

/* Promotion Grid */
.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #1A237E; /* Dark indigo for promo titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-desc {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text on gold */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-promotions__promo-button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

/* Terms and Conditions & How-to-Join */
.page-promotions__terms-list, .page-promotions__steps-list {
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  padding-left: 25px;
  list-style-type: disc; /* Default for ul */
}

.page-promotions__steps-list { list-style-type: decimal; /* Decimal for ol */ }

.page-promotions__terms-list li, .page-promotions__steps-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-promotions__terms-list li:last-child, .page-promotions__steps-list li:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__faq-answer {
  font-size: 1.05em;
  color: #555;
}

/* Call to Action (CTA) Section */
.page-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text on gold */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 15px;
    min-height: 350px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__intro, .page-promotions__list, .page-promotions__terms, .page-promotions__how-to-join, .page-promotions__faq, .page-promotions__cta {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__promo-card {
    padding: 25px;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__promo-desc {
    font-size: 0.95em;
  }
  .page-promotions__promo-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__terms-list, .page-promotions__steps-list {
    margin: 30px auto;
    padding-left: 20px;
  }
  .page-promotions__terms-list li, .page-promotions__steps-list li {
    font-size: 1em;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-promotions__faq-answer {
    font-size: 0.95em;
  }
  .page-promotions__cta-title {
    font-size: 2.2em;
  }
  .page-promotions__cta-description {
    font-size: 1.1em;
  }
  .page-promotions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 40px 10px;
    min-height: 300px;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__intro, .page-promotions__list, .page-promotions__terms, .page-promotions__how-to-join, .page-promotions__faq, .page-promotions__cta {
    padding: 30px 0;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__section-description {
    font-size: 0.9em;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.3em;
  }
  .page-promotions__promo-desc {
    font-size: 0.85em;
  }
  .page-promotions__promo-button {
    padding: 8px 15px;
    font-size: 0.8em;
  }
  .page-promotions__terms-list, .page-promotions__steps-list {
    margin: 20px auto;
    padding-left: 15px;
  }
  .page-promotions__terms-list li, .page-promotions__steps-list li {
    font-size: 0.9em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-description {
    font-size: 0.95em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}