/* style/promotions-welcome-bonus.css */

/* Base styles for the page content */
.page-promotions-welcome-bonus {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions-welcome-bonus__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-welcome-bonus__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Gold color for titles */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-promotions-welcome-bonus__text-block {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 20px;
  font-size: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  min-height: 500px;
}

.page-promotions-welcome-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.page-promotions-welcome-bonus__description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #F2FFF6; /* Main text color */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Main text color for button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* Benefits Section */
.page-promotions-welcome-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%; /* Ensure cards have equal height */
  box-sizing: border-box;
}

.page-promotions-welcome-bonus__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__card-text {
  font-size: 16px;
  color: #A7D9B8; /* Secondary text color */
  flex-grow: 1;
}

/* Terms & Steps Sections */
.page-promotions-welcome-bonus__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions-welcome-bonus__list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-left: 5px solid #2AD16F; /* Highlight with button color */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #F2FFF6; /* Main text color */
  font-size: 16px;
}

.page-promotions-welcome-bonus__list li strong {
  color: #F2C14E; /* Gold for strong text */
}

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

.page-promotions-welcome-bonus__step-card .page-promotions-welcome-bonus__card-title {
  color: #2AD16F; /* Button color for step titles */
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Main text color */
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.page-promotions-welcome-bonus__faq-qtext {
  flex-grow: 1;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold for toggle icon */
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Secondary text color */
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-answer {
  max-height: 500px; /* Adjust as needed */
}

/* Final CTA Section */
.page-promotions-welcome-bonus__cta-final-section {
  background-color: #0A4B2C; /* Deep Green background */
  padding: 80px 0;
}

.page-promotions-welcome-bonus__cta-container {
  margin-top: 40px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    min-height: 400px;
  }

  .page-promotions-welcome-bonus__hero-content {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .page-promotions-welcome-bonus__description {
    font-size: 16px;
  }

  .page-promotions-welcome-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-promotions-welcome-bonus__text-block {
    font-size: 15px;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__card {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__list {
    padding: 0 15px;
    margin: 20px auto;
  }

  .page-promotions-welcome-bonus__list li {
    padding: 15px;
    font-size: 15px;
  }

  .page-promotions-welcome-bonus__faq-list {
    padding: 0 15px;
    margin: 20px auto;
  }

  .page-promotions-welcome-bonus__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    font-size: 15px;
    padding: 0 15px 15px 15px;
  }

  /* Mobile image responsiveness */
  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile button responsiveness */
  .page-promotions-welcome-bonus__cta-button,
  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary,
  .page-promotions-welcome-bonus a[class*="button"],
  .page-promotions-welcome-bonus a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-welcome-bonus__cta-container {
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__button-group,
  .page-promotions-welcome-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }

  .page-promotions-welcome-bonus__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* General container responsiveness */
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-welcome-bonus__benefits-section .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__terms-section .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__steps-section .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__tips-section .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__faq-section .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__cta-final-section .page-promotions-welcome-bonus__container {
      padding-left: 15px !important;
      padding-right: 15px !important;
  }
}