/* style/resources-bsport-latest-promotions-guide.css */

/* Base styles for the page content */
.page-resources-bsport-latest-promotions-guide {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-bsport-latest-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-bsport-latest-promotions-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-bsport-latest-promotions-guide__heading {
  font-size: 2.8em;
  color: #26A9E0; /* Brand color for headings */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-bsport-latest-promotions-guide__sub-heading {
  font-size: 1.6em;
  color: #26A9E0; /* Brand color for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-bsport-latest-promotions-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text on dark background */
}

/* Hero Section */
.page-resources-bsport-latest-promotions-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: #1a1a2e; /* Dark background from body */
  min-height: 500px;
}

.page-resources-bsport-latest-promotions-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-bsport-latest-promotions-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Make image subtle behind text */
}

.page-resources-bsport-latest-promotions-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.page-resources-bsport-latest-promotions-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-bsport-latest-promotions-guide__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-resources-bsport-latest-promotions-guide__cta-button {
  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;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-bsport-latest-promotions-guide__cta-button--primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-bsport-latest-promotions-guide__cta-button--primary:hover {
  background-color: #1e87c0;
  transform: translateY(-3px);
}

.page-resources-bsport-latest-promotions-guide__cta-button--secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-bsport-latest-promotions-guide__cta-button--secondary:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

/* Content Grid for overview and promotion types */
.page-resources-bsport-latest-promotions-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-resources-bsport-latest-promotions-guide__content-grid--three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

/* Card Styles */
.page-resources-bsport-latest-promotions-guide__card {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white on dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.page-resources-bsport-latest-promotions-guide__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-resources-bsport-latest-promotions-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency in cards */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* List styles */
.page-resources-bsport-latest-promotions-guide__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-bsport-latest-promotions-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-bsport-latest-promotions-guide__list-item strong {
  color: #26A9E0;
}

/* Guide Section */
.page-resources-bsport-latest-promotions-guide__guide-section {
  background-color: #26A9E0; /* Use brand color as background for a section */
  color: #ffffff; /* White text for brand color background */
  padding: 80px 0;
}

.page-resources-bsport-latest-promotions-guide__guide-section .page-resources-bsport-latest-promotions-guide__heading {
  color: #ffffff; /* White heading on brand color background */
}

.page-resources-bsport-latest-promotions-guide__guide-item {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent white on brand color background */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-bsport-latest-promotions-guide__guide-item .page-resources-bsport-latest-promotions-guide__sub-heading {
  color: #ffffff;
}

.page-resources-bsport-latest-promotions-guide__guide-item .page-resources-bsport-latest-promotions-guide__text-block,
.page-resources-bsport-latest-promotions-guide__guide-item .page-resources-bsport-latest-promotions-guide__list {
  color: #e0e0e0;
}

.page-resources-bsport-latest-promotions-guide__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

/* FAQ Section */
.page-resources-bsport-latest-promotions-guide__faq-section {
  padding: 80px 0;
  background-color: #1a1a2e;
}

.page-resources-bsport-latest-promotions-guide__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-resources-bsport-latest-promotions-guide__faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-resources-bsport-latest-promotions-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-bsport-latest-promotions-guide__faq-text {
  flex-grow: 1;
  margin-right: 15px;
}

.page-resources-bsport-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-resources-bsport-latest-promotions-guide__faq-item.active .page-resources-bsport-latest-promotions-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-bsport-latest-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-bsport-latest-promotions-guide__faq-item.active .page-resources-bsport-latest-promotions-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-resources-bsport-latest-promotions-guide__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-bsport-latest-promotions-guide__content-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-bsport-latest-promotions-guide__content-grid--three-cols {
    grid-template-columns: 1fr;
  }
  .page-resources-bsport-latest-promotions-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-bsport-latest-promotions-guide__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-bsport-latest-promotions-guide {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header on mobile */
  }

  .page-resources-bsport-latest-promotions-guide__heading {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-resources-bsport-latest-promotions-guide__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-bsport-latest-promotions-guide__hero-section {
    padding: 80px 0;
  }

  .page-resources-bsport-latest-promotions-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-bsport-latest-promotions-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-bsport-latest-promotions-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important; /* Button responsive requirement */
    max-width: 100% !important; /* Button responsive requirement */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsive requirements */
  .page-resources-bsport-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containing elements for images/content */
  .page-resources-bsport-latest-promotions-guide__section,
  .page-resources-bsport-latest-promotions-guide__card,
  .page-resources-bsport-latest-promotions-guide__container,
  .page-resources-bsport-latest-promotions-guide__content-grid,
  .page-resources-bsport-latest-promotions-guide__guide-item,
  .page-resources-bsport-latest-promotions-guide__faq-list,
  .page-resources-bsport-latest-promotions-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Specific padding for sections */
  .page-resources-bsport-latest-promotions-guide__section {
    padding: 40px 0;
  }

  .page-resources-bsport-latest-promotions-guide__guide-section {
    padding: 60px 0;
  }

  .page-resources-bsport-latest-promotions-guide__faq-section {
    padding: 60px 0;
  }

  .page-resources-bsport-latest-promotions-guide__card {
    padding: 20px;
  }

  .page-resources-bsport-latest-promotions-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-bsport-latest-promotions-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-bsport-latest-promotions-guide__faq-item.active .page-resources-bsport-latest-promotions-guide__faq-answer {
    padding: 15px 20px;
  }
}