/* style/sports-football-betting.css */

/* Base styles for the page content */
.page-sports-football-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #f8f9fa; /* Slightly off-white background for main content area */
}

/* Hero Section */
.page-sports-football-betting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #26A9E0; /* Brand primary color for hero background */
  color: #ffffff; /* White text for dark background */
  overflow: hidden; /* Ensure no overflow */
}

.page-sports-football-betting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and text */
}

.page-sports-football-betting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-sports-football-betting__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure width for content alignment */
  z-index: 1; /* Ensure content is above any potential background effects */
}

.page-sports-football-betting__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-sports-football-betting__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #ffffff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-football-betting__description a {
  color: #ffffff;
  text-decoration: underline;
}

/* CTA Buttons */
.page-sports-football-betting__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  width: 100%; /* Ensure container takes full width for wrapping */
  max-width: 100%; /* Ensure container takes full width for wrapping */
  box-sizing: border-box;
}

.page-sports-football-betting__btn-primary,
.page-sports-football-betting__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-sports-football-betting__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-sports-football-betting__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-sports-football-betting__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Brand primary color for secondary action */
  border: 2px solid #26A9E0;
}

.page-sports-football-betting__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b6;
}

/* Content Area */
.page-sports-football-betting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for main content */
  color: #333333;
  box-sizing: border-box;
}

.page-sports-football-betting__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #26A9E0; /* Brand primary color for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-sports-football-betting__subsection-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-sports-football-betting p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333333;
}

.page-sports-football-betting p a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-sports-football-betting__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports-football-betting__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #333333;
}

.page-sports-football-betting__list li strong {
  color: #26A9E0;
}

.page-sports-football-betting__image-fullwidth {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

/* FAQ Section */
.page-sports-football-betting__faq-list {
  margin-top: 40px;
}

.page-sports-football-betting__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports-football-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-sports-football-betting__faq-question:hover {
  background-color: #e9ecef;
}

.page-sports-football-betting__faq-item[open] .page-sports-football-betting__faq-question {
  background-color: #e9ecef;
  border-bottom-color: transparent;
}

.page-sports-football-betting__faq-qtext {
  flex-grow: 1;
  color: #26A9E0; /* Brand color for FAQ question text */
}

.page-sports-football-betting__faq-qtext a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-sports-football-betting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-sports-football-betting__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

.page-sports-football-betting__faq-answer p {
  margin-bottom: 0;
}

/* Bottom CTA Buttons */
.page-sports-football-betting__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-football-betting__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-sports-football-betting__section-title {
    font-size: 1.8rem;
  }
  .page-sports-football-betting__subsection-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports-football-betting__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-sports-football-betting__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports-football-betting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-sports-football-betting__description {
    font-size: 1rem;
  }

  .page-sports-football-betting__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports-football-betting__btn-primary,
  .page-sports-football-betting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-sports-football-betting__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports-football-betting__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-sports-football-betting__subsection-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-sports-football-betting p,
  .page-sports-football-betting__list li,
  .page-sports-football-betting__faq-answer p {
    font-size: 0.95rem;
  }

  .page-sports-football-betting__image-fullwidth {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure min size */
    min-height: 200px !important; /* Ensure min size */
  }

  .page-sports-football-betting__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-sports-football-betting__faq-answer {
    padding: 15px 20px;
  }
}

/* Color contrast enforcement (as per instructions) */
.page-sports-football-betting__dark-bg {
  color: #ffffff; /* Deep blue background, so white text */
}

.page-sports-football-betting__light-bg {
  color: #333333; /* White background, so dark text */
}

/* Ensure no filter is used on images */
.page-sports-football-betting img {
  filter: none !important;
}

/* Ensure content area images meet min size requirements for CSS */
.page-sports-football-betting__content-area img {
    min-width: 200px;
    min-height: 200px;
}
/* Specific rule for content area images, ensuring no small sizes */
.page-sports-football-betting__content-area img {
  width: 100%; /* Ensure content images are responsive by default */
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all elements containing images/videos/buttons are correctly constrained on mobile */
.page-sports-football-betting__section,
.page-sports-football-betting__card,
.page-sports-football-betting__container,
.page-sports-football-betting__video-section,
.page-sports-football-betting__video-container,
.page-sports-football-betting__video-wrapper,
.page-sports-football-betting__cta-buttons,
.page-sports-football-betting__button-group,
.page-sports-football-betting__btn-container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent overflow */
}

@media (max-width: 768px) {
    .page-sports-football-betting__section,
    .page-sports-football-betting__card,
    .page-sports-football-betting__container,
    .page-sports-football-betting__video-section,
    .page-sports-football-betting__video-container,
    .page-sports-football-betting__video-wrapper,
    .page-sports-football-betting__cta-buttons,
    .page-sports-football-betting__button-group,
    .page-sports-football-betting__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Add padding to prevent content touching edges */
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow on mobile */
    }
}