/* style/fishing-games.css */

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

/* Color Contrast Classes */
.page-fishing-games__dark-bg {
    background-color: #017439; /* Main brand color */
    color: #FFFFFF; /* White text on dark green background */
}

.page-fishing-games__light-bg {
    background-color: #FFFFFF;
    color: #333333; /* Dark text on white background */
}

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

/* Section Titles and Descriptions */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Buttons */
.page-fishing-games__btn-primary {
    display: inline-block;
    background-color: #017439; /* Main brand color */
    color: #FFFFFF; /* White text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-fishing-games__btn-primary:hover {
    background-color: #005a2e; /* Slightly darker green on hover */
}

.page-fishing-games__btn-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #017439; /* Brand color text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #017439; /* Brand color border */
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005a2e; /* Slightly darker green on hover */
}

/* Specific button colors for Register/Login */
.page-fishing-games__btn-register {
    display: inline-block;
    background-color: #C30808; /* Red for Register */
    color: #FFFF00; /* Yellow text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-register:hover {
    background-color: #a00606; /* Darker red on hover */
}

.page-fishing-games__btn-login {
    display: inline-block;
    background-color: #C30808; /* Red for Login */
    color: #FFFF00; /* Yellow text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-login:hover {
    background-color: #a00606; /* Darker red on hover */
}


/* Images and Videos */
.page-fishing-games img,
.page-fishing-games video {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents extra space below images */
    border-radius: 8px;
    object-fit: cover;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF; /* White text on dark hero background */
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Light grey text */
}

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