/* style/promotions.css */

:root {
  --letou1-primary-color: #11A84E;
  --letou1-secondary-color: #22C768;
  --letou1-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --letou1-card-bg: #11271B;
  --letou1-background: #08160F;
  --letou1-text-main: #F2FFF6;
  --letou1-text-secondary: #A7D9B8;
  --letou1-border-color: #2E7A4E;
  --letou1-glow-color: #57E38D;
  --letou1-gold-color: #F2C14E;
  --letou1-divider-color: #1E3A2A;
  --letou1-deep-green: #0A4B2C;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--letou1-text-main); /* Default text color for dark background */
  background-color: var(--letou1-background); /* Assumed from shared.css */
}

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

.page-promotions__dark-bg {
  background-color: var(--letou1-background);
  color: var(--letou1-text-main);
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

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

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--letou1-text-main);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--letou1-text-secondary);
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--letou1-button-gradient);
  color: var(--letou1-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--letou1-text-main);
  border: 2px solid var(--letou1-border-color);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--letou1-border-color);
  color: var(--letou1-text-main);
  transform: translateY(-2px);
}

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--letou1-text-main);
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--letou1-gold-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--letou1-text-secondary);
}

.page-promotions__overview-section,
.page-promotions__how-to-claim,
.page-promotions__faq-section,
.page-promotions__final-cta {
  padding: 80px 0;
  background-color: var(--letou1-background);
}

.page-promotions__detailed-promos,
.page-promotions__why-choose {
  padding: 80px 0;
  background-color: var(--letou1-deep-green);
}

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

.page-promotions__card {
  background-color: var(--letou1-card-bg);
  border: 1px solid var(--letou1-border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--letou1-text-main);
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--letou1-text-main);
}

.page-promotions__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--letou1-text-secondary);
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--letou1-button-gradient);
  color: var(--letou1-text-main);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__promo-detail-item {
  background-color: var(--letou1-card-bg);
  border: 1px solid var(--letou1-border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__detail-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--letou1-gold-color);
}

.page-promotions__detail-text {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--letou1-text-secondary);
}

.page-promotions__detail-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 25px;
  color: var(--letou1-text-secondary);
}

.page-promotions__detail-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-promotions__steps-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions__steps-list li {
  background-color: var(--letou1-card-bg);
  border: 1px solid var(--letou1-border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
  position: relative;
  padding-top: 60px;
  color: var(--letou1-text-main);
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--letou1-primary-color);
  color: var(--letou1-text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  border: 2px solid var(--letou1-gold-color);
}

.page-promotions__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--letou1-text-main);
}

.page-promotions__why-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promotions__why-list li {
  background-color: var(--letou1-card-bg);
  border: 1px solid var(--letou1-border-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--letou1-text-main);
  text-align: center;
}

.page-promotions__why-item-title {
  font-size: 1.2em;
  color: var(--letou1-gold-color);
  margin-bottom: 10px;
  display: block;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--letou1-border-color);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--letou1-card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: var(--letou1-text-main);
  background-color: var(--letou1-card-bg);
  list-style: none;
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  margin-left: 15px;
  color: var(--letou1-gold-color);
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--letou1-text-secondary);
  text-align: left;
}

.page-promotions__final-cta {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-list,
  .page-promotions__why-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .page-promotions__overview-section,
  .page-promotions__how-to-claim,
  .page-promotions__faq-section,
  .page-promotions__final-cta,
  .page-promotions__detailed-promos,
  .page-promotions__why-choose {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
  }

  .page-promotions__hero-image-wrapper,
  .page-promotions__container,
  .page-promotions__promo-grid,
  .page-promotions__promo-card,
  .page-promotions__promo-detail-item,
  .page-promotions__steps-list,
  .page-promotions__steps-list li,
  .page-promotions__why-list,
  .page-promotions__why-list li,
  .page-promotions__faq-item,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container,
  .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 !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-promotions__description,
  .page-promotions__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__card-image {
    height: auto !important;
    min-height: 200px !important; /* Ensure min size for cards */
  }

  .page-promotions__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-list,
  .page-promotions__why-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__steps-list li {
    padding-top: 50px;
  }

  .page-promotions__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .page-promotions__why-item-title {
    font-size: 1.1em;
  }

  .page-promotions__promo-detail-item {
    padding: 20px;
  }

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

  .page-promotions__detail-text {
    font-size: 0.95em;
  }
}