/* style/fishing-games.css */

/* Base styles for the page content */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--black-color); /* Inherit from shared, assume dark for body */
}

/* Ensure text on dark body background is light */
.page-fishing-games > section {
    padding: 60px 0;
}

/* Dark background sections */
.page-fishing-games__dark-bg {
    background-color: #26A9E0; /* Main brand color for dark sections */
    color: #ffffff; /* White text for dark backgrounds */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for titles on light backgrounds */
}

.page-fishing-games__section-title--white {
    color: #ffffff; /* White titles for dark backgrounds */
}

.page-fishing-games__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
}

.page-fishing-games__section-description--white {
    color: #f0f0f0;
}

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

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

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Slightly transparent to let text stand out */
}

.page-fishing-games__hero-section .page-fishing-games__container {
    position: relative;
    z-index: 2;
    color: #ffffff; /* Ensure hero text is white */
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}