/* style/promotions.css */

/* General Section Styles */
.page-promotions__section {
  padding: 60px 0;
  text-align: center;
  color: #E0E0E0; /* Light grey for general text on dark background */
}

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

.page-promotions__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for main titles */
  font-weight: 700;
  line-height: 1.2;
}

.page-promotions__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-promotions__text strong {
  color: #FFD700;
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3B6A 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.6em;
  margin-bottom: 40px;
  color: #E0E0E0;
  line-height: 1.5;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #0A2342; /* Dark blue text on gold button */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

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

.page-promotions__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.3; /* Subtle background image */
}

/* Intro Section */
.page-promotions__intro {
  background-color: #0A2342; /* Dark blue background */
  padding: 80px 0;
}

.page-promotions__image-inline {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Promotion List Section */
.page-promotions__promo-list {
  background-color: #1A3B6A; /* Slightly lighter dark blue */
  padding: 80px 0;
}

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

.page-promotions__promo-item {
  background-color: #0A2342; /* Dark blue card background */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #FFD700; /* Gold border for images */
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for promo titles */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions__promo-description {
  font-size: 1em;
  color: #CCCCCC; /* Lighter grey for descriptions */
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-actions {
  display: flex;
  gap: 15px;
  margin-top: auto; /* Push buttons to bottom */
}

.page-promotions__detail-button,
.page-promotions__claim-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-promotions__detail-button {
  background-color: #34495E; /* Darker grey-blue for details */
  color: #E0E0E0;
  border: 1px solid #54657b;
}

.page-promotions__detail-button:hover {
  background-color: #54657b;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-promotions__claim-button {
  background-color: #FFD700; /* Gold for claim button */
  color: #0A2342; /* Dark blue text */
  border: 1px solid #FFD700;
}

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

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-promotions__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-promotions__why-item {
  text-align: center;
  padding: 30px;
  background-color: #1A3B6A; /* Lighter dark blue for why-item */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__why-item h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for why-item titles */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions__why-item p {
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.7;
}

.page-promotions__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icons gold */
}

/* FAQ Section */
.page-promotions__faq {
  background-color: #1A3B6A;
  padding: 80px 0;
}

.page-promotions__faq-item {
  background-color: #0A2342;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
  font-size: 1.5em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__faq-answer {
  font-size: 1.05em;
  color: #CCCCCC;
  line-height: 1.7;
}

/* Final CTA Section */
.page-promotions__final-cta {
  background: linear-gradient(45deg, #0A2342 0%, #1A3B6A 100%);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-promotions__final-cta-content {
  max-width: 900px;
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #FFD700;
  font-size: 3.5em;
}

.page-promotions__final-cta .page-promotions__text {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-promotions__cta-button--large {
  padding: 20px 50px;
  font-size: 1.6em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.4em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-promotions__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0 250px;
  }
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promotions__section {
    padding: 50px 0;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-item {
    padding: 25px;
  }
  .page-promotions__promo-title {
    font-size: 1.6em;
  }
  .page-promotions__promo-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions__detail-button, .page-promotions__claim-button {
    width: 100%;
    text-align: center;
  }
  .page-promotions__why-item h3 {
    font-size: 1.6em;
  }
  .page-promotions__faq-question {
    font-size: 1.3em;
  }
  .page-promotions__final-cta .page-promotions__section-title {
    font-size: 2.5em;
  }
  .page-promotions__final-cta .page-promotions__text {
    font-size: 1.1em;
  }
  .page-promotions__cta-button--large {
    font-size: 1.4em;
    padding: 18px 40px;
  }
  .page-promotions__hero-image-wrapper {
    width: 80%;
    height: 200px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-promotions__hero-image {
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 0 200px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text {
    font-size: 0.95em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-item {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.4em;
  }
  .page-promotions__promo-description {
    font-size: 0.9em;
  }
  .page-promotions__detail-button, .page-promotions__claim-button {
    font-size: 0.85em;
    padding: 10px 15px;
  }
  .page-promotions__why-item h3 {
    font-size: 1.4em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__final-cta .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__final-cta .page-promotions__text {
    font-size: 1em;
  }
  .page-promotions__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promotions__hero-image-wrapper {
    width: 100%;
    height: 180px;
  }
}