/* style/promotions.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --bg-dark-color: #0D0E12;
  --card-bg-color: #17191F;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark background */
  background-color: var(--bg-dark-color); /* Assuming body background is dark from shared.css */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  color: var(--text-main-color);
  background-color: var(--bg-dark-color);
}

.page-promotions__image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__lead-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-main-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

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

.page-promotions__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-dark-color);
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-promotions__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

.page-promotions__benefits-section {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__benefits-section .page-promotions__section-title {
  color: var(--deep-orange-color);
}

.page-promotions__benefits-section .page-promotions__card-title {
  color: var(--primary-color);
}

.page-promotions__benefits-section .page-promotions__card-description {
  color: #555555;
}

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

.page-promotions__benefit-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 1rem;
  margin-bottom: 25px;
}

.page-promotions__types-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-promotions__section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 40px;
  object-fit: cover;
}

.page-promotions__content-block {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promotions__types-section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.page-promotions__inline-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 25px 0;
  object-fit: cover;
}

.page-promotions__how-to-join-section {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__how-to-join-section .page-promotions__section-title {
  color: var(--deep-orange-color);
}

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

.page-promotions__step-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.3);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #555555;
  flex-grow: 1;
}

.page-promotions__step-card .page-promotions__btn-primary {
  margin-top: 25px;
}

.page-promotions__review-section {
  background-color: var(--bg-dark-color);
  color: var(--text-main-color);
}

.page-promotions__review-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions__review-section ul li {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.page-promotions__review-section ul li strong {
  color: var(--secondary-color);
  margin-right: 10px;
}

.page-promotions__review-section .page-promotions__btn-secondary {
  margin-top: 30px;
}

.page-promotions__faq-section {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__faq-section .page-promotions__section-title {
  color: var(--deep-orange-color);
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #d0d0d0;
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  margin-left: 15px;
  color: var(--deep-orange-color);
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

.page-promotions__cta-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-promotions__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-large {
  padding: 16px 35px;
  font-size: 1.1rem;
}

.page-promotions__cta-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding: 10px 15px 50px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
  .page-promotions__sub-title {
    font-size: 1.6rem;
  }
  .page-promotions__container {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding: 10px 15px 40px;
  }
  .page-promotions__hero-image {
    max-height: 400px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions__lead-text {
    font-size: 1rem;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-content .page-promotions__btn-primary {
    margin-bottom: 0;
  }
  .page-promotions__grid-layout,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__container,
  .page-promotions__hero-content,
  .page-promotions__content-block,
  .page-promotions__faq-list,
  .page-promotions__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-promotions__sub-title {
    font-size: 1.4rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-promotions__cta-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }
  .page-promotions__btn-large {
    padding: 14px 25px;
    font-size: 1rem;
  }
  .page-promotions__step-card .page-promotions__btn-primary {
    width: auto !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding: 10px 10px 30px;
  }
  .page-promotions__hero-image {
    max-height: 250px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-promotions__lead-text {
    font-size: 0.95rem;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-promotions__sub-title {
    font-size: 1.2rem;
  }
  .page-promotions__faq-question {
    font-size: 0.95rem;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions__cta-title {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
  }
}