/* style/fishing-games.css */

/* Base Styles */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* body background is handled by shared.css */
}

/* Header offset for main content */
.page-fishing-games__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    overflow: hidden;
}

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

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

.page-fishing-games__dark-section {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Default for dark sections */
    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 40px auto;
    color: #f0f0f0; /* Slightly lighter for description */
}

/* Text color for light background sections */
.page-fishing-games__section:not(.page-fishing-games__dark-section) .page-fishing-games__section-title,
.page-fishing-games__section:not(.page-fishing-games__dark-section) p,
.page-fishing-games__section:not(.page-fishing-games__dark-section) li,
.page-fishing-games__section:not(.page-fishing-games__dark-section) a {
    color: #333333; /* Dark text for light background */
}
.page-fishing-games__section:not(.page-fishing-games__dark-section) .page-fishing-games__section-description {
    color: #555555;
}

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #0a0a0a; /* Match body background for seamless transition */
    text-align: center;
    padding-bottom: 60px;
}

.page-fishing-games__hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

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

.page-fishing-games__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay effect */
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-fishing-games__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

/* Video Section */
.page-fishing-games__video-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px; /* Max width for video */
    margin: 40px auto 20px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.page-fishing-games__video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.page-fishing-games__video-cta {
    margin-top: 30px;
}

/* Introduction Section */
.page-fishing-games__introduction {
    background-color: #f8f8f8; /* Light background for contrast */
    color: #333333;
}
.page-fishing-games__introduction .page-fishing-games__section-title {
    color: #017439; /* Brand color for title on light background */
}

.page-fishing-games__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}
.page-fishing-games__text-block p {
    margin-bottom: 15px;
    color: #333333;
}