/* style/fishing-games.css */

/* Base Styles for the page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #FFFFFF; /* Default light background */
}

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

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

.page-fishing-games__section-title {
    font-size: 36px;
    color: #26A9E0; /* Brand primary color for titles */
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-fishing-games__section-title--light {
    color: #FFFFFF;
}

.page-fishing-games__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

.page-fishing-games__paragraph--light {
    color: #f0f0f0;
}

.page-fishing-games__paragraph a {
    color: #EA7C07; /* Login color for links in paragraphs */
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__paragraph a:hover {
    text-decoration: underline;
}

.page-fishing-games__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
}

.page-fishing-games__image--center {
    margin-left: auto;
    margin-right: auto;
}

/* 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); /* Fixed header offset */
    background: linear-gradient(135deg, #26A9E0, #a0d8f0); /* Light gradient for hero background */
    overflow: hidden; /* Ensure content doesn't overflow */
}

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