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

/* General Page Styling */
.page-promotions-deposit-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg); /* Inherit from shared.css */
}

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

.page-promotions-deposit-bonus__section {
  padding: 60px 0;
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-deposit-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-bonus__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__section-title {
  color: #017439;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__text-block {
  color: #333333;
}

.page-promotions-deposit-bonus__light-bg a {
  color: #017439;
  text-decoration: underline;
}

.page-promotions-deposit-bonus__dark-bg {
  background-color: #017439; /* Using brand primary color for dark sections */
  color: #ffffff;
}

.page-promotions-deposit-bonus__dark-bg .page-promotions-deposit-bonus__section-title {
  color: #ffffff;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--header-offset, 120px) 0 60px 0; /* Account for fixed header */
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #017439, #005f2e);
}

.page-promotions-deposit-bonus__hero-content {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  text-align: left;
  z-index: 1;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.8em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-promotions-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-deposit-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-deposit-bonus__btn-primary,
.page-promotions-deposit-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-deposit-bonus__btn-primary {
  background-color: #C30808; /* Specific color for Register/Login */
  color: #FFFF00; /* Specific font color for Register/Login */
  border: 2px solid #C30808;
}

.page-promotions-deposit-bonus__btn-primary:hover {
  background-color: #e01a1a;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #ffffff;
}

.page-promotions-deposit-bonus__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 0;
}

.page-promotions-deposit-bonus__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card Grid */
.page-promotions-deposit-bonus__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__card {
  background-color: #f0f0f0;
  color: #333333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__card:hover {
  background-color: #e0e0e0;
}

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

.page-promotions-deposit-bonus__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFF00; /* Highlight titles in cards */
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__card-title {
  color: #017439;
}

.page-promotions-deposit-bonus__card-text {
  font-size: 1em;
  flex-grow: 1;
}

/* Steps Grid */
.page-promotions-deposit-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-promotions-deposit-bonus__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #C30808;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin: 0 auto 20px auto;
}

.page-promotions-deposit-bonus__step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions-deposit-bonus__step-text {
  font-size: 1em;
}

.page-promotions-deposit-bonus__image-center {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* List Styling */
.page-promotions-deposit-bonus__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-promotions-deposit-bonus__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFFF00;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__list-item {
  background-color: #f0f0f0;
  color: #333333;
  border-left-color: #017439;
}

.page-promotions-deposit-bonus__list-item strong {
  color: #FFFF00;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__list-item strong {
  color: #017439;
}

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

.page-promotions-deposit-bonus__benefit-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-promotions-deposit-bonus__benefit-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions-deposit-bonus__benefit-text {
  font-size: 1em;
}

/* FAQ Section */
.page-promotions-deposit-bonus__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-bonus__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__faq-item {
  border-color: #e0e0e0;
  background-color: #ffffff;
}

.page-promotions-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__faq-question {
  background-color: #f9f9f9;
  color: #333333;
}

.page-promotions-deposit-bonus__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions-deposit-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-promotions-deposit-bonus__light-bg .page-promotions-deposit-bonus__faq-answer {
  color: #555555;
}

.page-promotions-deposit-bonus__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  text-align: left;
}

.page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

/* Final CTA Section */
.page-promotions-deposit-bonus__final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(to right, #017439, #005f2e);
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
  font-size: 3em;
  margin-bottom: 30px;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__text-block {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promotions-deposit-bonus__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-deposit-bonus__hero-section {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .page-promotions-deposit-bonus__hero-content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .page-promotions-deposit-bonus__hero-image-wrapper {
    padding-top: 30px;
  }

  .page-promotions-deposit-bonus__hero-title {
    font-size: 3em;
  }

  .page-promotions-deposit-bonus__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-deposit-bonus__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }

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

  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-deposit-bonus__hero-description {
    font-size: 1em;
  }

  .page-promotions-deposit-bonus__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-promotions-deposit-bonus__btn-primary,
  .page-promotions-deposit-bonus__btn-secondary,
  .page-promotions-deposit-bonus a[class*="button"],
  .page-promotions-deposit-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-deposit-bonus__cta-buttons,
  .page-promotions-deposit-bonus__button-group,
  .page-promotions-deposit-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;
  }

  .page-promotions-deposit-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-deposit-bonus__section,
  .page-promotions-deposit-bonus__card,
  .page-promotions-deposit-bonus__container,
  .page-promotions-deposit-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-deposit-bonus__faq-answer {
    padding: 0 15px; /* Adjust padding for mobile */
  }

  .page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-answer {
    padding: 15px; /* Adjust padding for mobile */
  }

  .page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
    font-size: 2.2em;
  }

  .page-promotions-deposit-bonus__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2em;
  }

  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promotions-deposit-bonus__text-block {
    font-size: 0.95em;
  }

  .page-promotions-deposit-bonus__btn-primary,
  .page-promotions-deposit-bonus__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-promotions-deposit-bonus__card-title {
    font-size: 1.3em;
  }

  .page-promotions-deposit-bonus__step-title {
    font-size: 1.4em;
  }

  .page-promotions-deposit-bonus__faq-question {
    font-size: 1em;
  }
}