/* style/fishing-games-guide.css */

/* Variables for colors */
:root {
  --page-fishing-games-guide-primary-color: #017439;
  --page-fishing-games-guide-secondary-color: #FFFFFF;
  --page-fishing-games-guide-register-color: #C30808;
  --page-fishing-games-guide-login-color: #C30808;
  --page-fishing-games-guide-bg-color: #FFFFFF;
  --page-fishing-games-guide-register-login-font-color: #FFFF00;
}

.page-fishing-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

/* Hero Section */
.page-fishing-games-guide__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-fishing-games-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image slightly for text contrast */
}