/* style/responsible-gaming.css */

/* Base styles for the responsible gaming page */
.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

/* Fixed header offset for the main content or first section */
.page-responsible-gaming__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-responsible-gaming__section {
  padding: 60px 20px;
  text-align: center;
}

.page-responsible-gaming__dark-bg {
  background-color: #26A9E0; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-responsible-gaming__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-responsible-gaming__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-responsible-gaming__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff; /* Default for dark sections */
}

.page-responsible-gaming__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for better readability on dark background */
}

/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  color: #ffffff; /* Ensure text is white on dark overlay */
}

.page-responsible-gaming__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 0;
}

.page-responsible-gaming__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place image behind overlay */
}

.page-responsible-gaming__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-responsible-gaming__hero-content {
  position: relative;
  z-index: 1; /* Ensure content is above overlay */
  max-width: 900px;
  padding: 20px;
}