/* style/fishing-games.css */

/* Custom CSS Variables for this page if needed, otherwise use shared */
:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-text-color-dark: #333333;
  --page-text-color-light: #ffffff;
  --page-login-button-color: #EA7C07;
}

/* Base styles for the page content */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-color-dark); /* Default text color for light background */
  background-color: var(--page-secondary-color); /* Matches body background if not overridden by sections */
  line-height: 1.6;
}

/* Ensure all images are responsive by default */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra space below images */
}

/* Section styling */
.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add horizontal padding for content */
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: 36px;
  color: var(--page-primary-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-fishing-games__sub-title {
  font-size: 24px;
  color: var(--page-primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__text-block {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--page-text-color-dark);
}

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #a7d9f2 100%); /* Light blue gradient */
}

.page-fishing-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games__main-title {
  font-size: 48px;
  color: var(--page-text-color-light); /* White text for dark background */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: var(--page-text-color-light); /* White text for dark background */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box; /* Include padding in width calculation */
}

.page-fishing-games__btn-primary {
  background: var(--page-login-button-color); /* Login color for primary action */
  color: var(--page-text-color-light);
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-fishing-games__btn-primary:hover {
  background: #d46e06; /* Slightly darker orange on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-fishing-games__btn-secondary {
  background: var(--page-secondary-color);
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--page-primary-color);
  color: var(--page-text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__image-content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure image doesn't get too small */
}

.page-fishing-games__image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-fishing-games__content-wrapper {
  flex: 1;
}

.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games__feature-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--page-text-color-dark);
  position: relative;
  padding-left: 25px;
}

.page-fishing-games__feature-list li::before {
  content: '✓';
  color: var(--page-primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How to Play Section */
.page-fishing-games__dark-section {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__text-block,
.page-fishing-games__dark-section .page-fishing-games__step-title,
.page-fishing-games__dark-section .page-fishing-games__strategy-title {
  color: var(--page-text-color-light);
}