/* style/promotions.css */

/* General Styles */
.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

/* Section Backgrounds for Contrast */
.page-promotions__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions__light-bg {
  background-color: #11271B; /* Card BG, slightly lighter than main background for contrast */
  color: #F2FFF6;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 60px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height for better content visibility */
}

.page-promotions__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -120px; /* Overlap image slightly for visual effect */
  background: rgba(17, 39, 27, 0.9); /* Semi-transparent Card BG */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  position: relative;
}

.page-promotions__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1.5px;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  opacity: 0.9;
}

/* Introduction Section */
.page-promotions__introduction-section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

/* Types Section */
.page-promotions__types-section {
  padding: 80px 0;
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background-color: #22C768; /* Auxiliary color */
  color: #08160F; /* Dark text for light button */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: auto; /* Push to bottom */
}

.page-promotions__btn-secondary:hover {
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Light text for dark button */
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Guide Section */
.page-promotions__guide-section {
  padding: 80px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__guide-list li {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  border-left: 5px solid #2AD16F; /* Highlight with button color */
  color: #F2FFF6; /* Text Main */
  font-size: 1.1em;
}

.page-promotions__guide-list li strong {
  color: #F2C14E; /* Gold */
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

/* Benefits Section */
.page-promotions__benefits-section {
  padding: 80px 0;
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__benefits-list li {
  background-color: #11271B; /* Card BG */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  border-left: 4px solid #57E38D; /* Glow */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-promotions__benefits-list li strong {
  color: #F2FFF6; /* Text Main */
  display: block;
  margin-bottom: 5px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease;
  user-select: none;
  list-style: none; /* For details/summary compatibility */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  color: #57E38D; /* Glow */
  margin-left: 20px;
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

/* Bottom CTA Section */
.page-promotions__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }
  .page-promotions__hero-image {
    max-height: 400px;
  }
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 1em;
  }

  .page-promotions__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card {
    padding: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.5em;
  }

  .page-promotions__btn-secondary {
    padding: 10px 20px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__guide-list li,
  .page-promotions__benefits-list li {
    padding: 18px 20px;
    font-size: 1em;
  }

  .page-promotions__guide-list li strong {
    font-size: 1.1em;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }

  /* Image and video responsive rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__grid-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__video-section {
    padding-top: 10px !important; /* body handles header offset, small decorative top padding */
  }
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-promotions__hero-description {
    font-size: 0.95em;
  }
  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__promo-card {
    padding: 15px;
  }
  .page-promotions__card-image {
    height: 150px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__btn-secondary {
    font-size: 0.9em;
  }
  .page-promotions__guide-list li,
  .page-promotions__benefits-list li {
    font-size: 0.95em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.95em;
  }
}