/* style/fishing-games.css */

/* Base Styles for the page content */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared, default to white */
}

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

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

.page-fishing-games__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-fishing-games__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjusted for larger screen */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    box-sizing: border-box;
}

.page-fishing-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFF00; /* Yellow for main title for impact */
}

.page-fishing-games__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    line-height: 1.5;
}

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

/* 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, transform 0.3s ease;
    text-align: center;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background-color: #C30808; /* Custom red for register/login */
    color: #FFFF00; /* Custom yellow for register/login font */
    border: 2px solid #C30808;
}

.page-fishing-games__btn-primary:hover {
    background-color: #e01e1e;
    transform: translateY(-3px);
}

.page-fishing-games__btn-secondary {
    background-color: #017439; /* Brand green */
    color: #FFFFFF; /* White text */
    border: 2px solid #017439;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #005a2e;
    transform: translateY(-3px);
}

/* Sections */
.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play,
.page-fishing-games__game-showcase,
.page-fishing-games__why-choose,
.page-fishing-games__faq-section {
    padding: 80px 0;
}

.page-fishing-games__highlight-features,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-section {
    padding: 80px 0;
    background-color: #017439; /* Brand green background */
    color: #FFFFFF; /* White text for dark background */
}

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__sub-title,
.page-fishing-games__dark-bg .page-fishing-games__paragraph,
.page-fishing-games__dark-bg .page-fishing-games__list-title,
.page-fishing-games__dark-bg .page-fishing-games__list-description,
.page-fishing-games__dark-bg .page-fishing-games__promotion-title,
.page-fishing-games__dark-bg .page-fishing-games__promotion-description {
    color: #FFFFFF;
}

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__sub-title {
    color: #017439;
}
.page-fishing-games__light-bg .page-fishing-games__paragraph,
.page-fishing-games__light-bg .page-fishing-games__list-description {
    color: #333333;
}


/* Introduction Section */
.page-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}