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

/* Variables */
:root {
  --page-primary-color: #FF8C1A;
  --page-secondary-color: #FFA53A;
  --page-background-color: #0D0E12;
  --page-card-background: #17191F;
  --page-text-main: #FFF3E6;
  --page-border-color: #A84F0C;
  --page-glow-color: #FFB04D;
  --page-deep-orange: #D96800;
}

/* Base styles for the page content */
.page-sports-betting-guide {
  font-family: Arial, sans-serif;
  color: var(--page-text-main); /* Default text color for dark background */
  background-color: var(--page-background-color); /* Dark background */
  line-height: 1.6;
}

.page-sports-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-sports-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px; /* Base padding */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-sports-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-sports-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-sports-betting-guide__hero-content {
  position: relative;
  z-index: 2; /* Ensure content is above image but not overlaying */
  max-width: 800px;
  text-align: center;
  padding: 20px;
}

.page-sports-betting-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: var(--page-primary-color);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-sports-betting-guide__hero-description {
  font-size: 1.2em;
  color: var(--page-text-main);
  margin-bottom: 30px;
}

/* Call to Action Buttons */
.page-sports-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-sports-betting-guide__btn-primary,
.page-sports-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}