/* style/fishing-games.css */

/* Base styles for the page content, assuming body has a dark background */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text on dark background */
    background: var(--background-dark); /* Inherit from shared.css */
}

/* Common container for content sections */
.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section styling */
.page-fishing-games__section {
    padding: 80px 0;
}

.page-fishing-games__section-title {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #FFD700; /* Golden primary color */
}

.page-fishing-games__section-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #f0f0f0; /* Slightly off-white for contrast */
}

/* Light background elements for better contrast */
.page-fishing-games__light-bg {
    background: #ffffff;
    color: #333333; /* Dark text on light background */
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
}

.page-fishing-games__btn-primary {
    background: #FFD700; /* Golden */
    color: #1E90FF; /* Deep Blue text for contrast */
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
    background: #e6c200;
    color: #ffffff;
    border-color: #e6c200;
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #FFD700; /* Golden text */
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
    background: #FFD700;
    color: #1E90FF;
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
}

/* Hero Banner Section */
.page-fishing-games__hero-banner {
    padding-top: 0; /* Assuming shared.css handles body padding-top: var(--header-offset) */
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-fishing-games__hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.page-fishing-games__hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Golden */
}