/* style/fishing-games.css */

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

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

/* Section titles */
.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

/* Paragraphs and list items */
.page-fishing-games p,
.page-fishing-games li {
    color: #f0f0f0; /* Slightly off-white for body text */
}

/* Call to action buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__hero-cta-button,
.page-fishing-games__btn-link {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-fishing-games__btn-primary,
.page-fishing-games__hero-cta-button {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark red for text on gold */
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover,
.page-fishing-games__hero-cta-button:hover {
    background-color: #e0b800; /* Darker gold */
    border-color: #e0b800;
    color: #ffffff;
}

.page-fishing-games__btn-secondary {
    background-color: #8B0000; /* Dark red */
    color: #FFD700; /* Gold for text on dark red */
    border: 2px solid #8B0000;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #6a0000; /* Darker red */
    border-color: #6a0000;
    color: #ffffff;
}

.page-fishing-games__btn-link {
    background: none;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
}

.page-fishing-games__btn-link:hover {
    background: #FFD700;
    color: #8B0000;
}

/* Shared section styles */
.page-fishing-games__dark-bg {
    background-color: #1a1a1a; /* A dark grey for sections on dark body bg */
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0; /* Assuming shared.css sets body padding-top */
    margin-bottom: 60px;
}

.page-fishing-games__hero-container {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for hero on desktop */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

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

.page-fishing-games__hero-description {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
}