/* style/fishing-games.css */

/* Base styles for the fishing games page */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color, #333333); /* Default text color, adjusted by smart contrast */
    background-color: var(--bg-color, #ffffff); /* Inherit from shared.css or default to white */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background-color: #017439; /* Main brand color for dark section */
    color: #ffffff; /* White text for dark background */
    padding-top: var(--header-offset, 120px); /* Ensure header offset */
    gap: 40px;
}

.page-fishing-games__hero-content {
    max-width: 600px;
    z-index: 2;
    text-align: left;
}

.page-fishing-games__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFF00; /* Special highlight color for title */
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-start;
}

.page-fishing-games__cta-buttons--center {
    justify-content: center;
}

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

.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: #a30606;
    border-color: #a30606;
    transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: #FFFF00;
    color: #017439;
    transform: translateY(-2px);
}

.page-fishing-games__btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly transparent to let content stand out */
    display: block;
    min-width: 200px; /* Min size for images */
    min-height: 200px;
}

/* General Section Styling */
.page-fishing-games__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #017439; /* Main brand color for titles */
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
    color: #FFFF00; /* Yellow for titles on dark background */
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--text-color, #333333);
}

.page-fishing-games__dark-section .page-fishing-games__section-description {
    color: #f0f0f0;
}

/* Intro Video Section */
.page-fishing-games__intro-video-section {
    padding: 60px 20px;
    background-color: #ffffff; /* Light background */
    color: #333333;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}