/* style/fishing-games.css */

/* --- General Page Styles --- */
.page-fishing-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8; /* Light background for the page content */
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: 36px;
  color: #0A2463; /* Main brand color for titles */
  margin-bottom: 40px;
  font-weight: 700;
}

.page-fishing-games__text-block {
  font-size: 17px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555555;
}

/* --- Color Contrast Classes --- */
.page-fishing-games__dark-bg {
  background-color: #0A2463; /* Main brand color */
  color: #ffffff; /* White text for dark background */
}

.page-fishing-games__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

/* --- CTA Buttons --- */
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E0A441; /* Auxiliary brand color */
  color: #0A2463; /* Dark text for gold background */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-fishing-games__cta-button:hover {
  background: #f0b551; /* Slightly lighter gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}