/* style/fishing-games.css */

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light body background */
    background-color: #f9f9f9; /* Slightly off-white for sections */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    background: linear-gradient(135deg, #0A2463, #1A3A7A); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E3B505; /* Golden secondary color for emphasis */
}

.page-fishing-games__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__hero-button {
    display: inline-block;
    background-color: #E3B505; /* Golden button */
    color: #0A2463; /* Dark blue text on golden button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E3B505;
}

.page-fishing-games__hero-button:hover {
    background-color: #f0c822; /* Lighter golden on hover */
    transform: translateY(-3px);
}

.page-fishing-games__hero-button--secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
}

.page-fishing-games__hero-button--secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
}

/* General Section Styling */
.page-fishing-games__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for content sections */
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-fishing-games__section:nth-of-type(even) {
    background-color: #f0f4f7; /* Light greyish blue for alternating sections */
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E3B505; /* Golden underline */
    border-radius: 2px;
}

.page-fishing-games__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444444;
}

.page-fishing-games__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* No filter properties to change image color */
}

/* Feature List */
.page-fishing-games__feature-list,
.page-fishing-games__tip-list,
.page-fishing-games__promo-list,
.page-fishing-games__reason-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-fishing-games__feature-item,
.page-fishing-games__tip-item,
.page-fishing-games__promo-item,
.page-fishing-games__reason-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover,
.page-fishing-games__tip-item:hover,
.page-fishing-games__promo-item:hover,
.page-fishing-games__reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.page-fishing-games__feature-title,
.page-fishing-games__tip-title,
.page-fishing-games__promo-title,
.page-fishing-games__reason-title,
.page-fishing-games__guide-title,
.page-fishing-games__game-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-description,
.page-fishing-games__tip-description,
.page-fishing-games__promo-description,
.page-fishing-games__reason-description,
.page-fishing-games__guide-description,
.page-fishing-games__game-description {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

/* Game Grid */
.page-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-fishing-games__game-card {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
}

/* Guide List (How-to-play) */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    counter-reset: guide-counter;
    margin-top: 30px;
}

.page-fishing-games__guide-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.page-fishing-games__guide-item::before {
    counter-increment: guide-counter;
    content: counter(guide-counter);
    font-size: 1.8em;
    font-weight: bold;
    color: #E3B505; /* Golden number */
    background-color: #0A2463; /* Dark blue background for number */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-fishing-games__guide-item a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: underline;
}

.page-fishing-games__guide-item a:hover {
    color: #E3B505;
}

/* Promotion Button */
.page-fishing-games__promo-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: #0A2463;
    color: #ffffff;
    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;
    border: 2px solid #0A2463;
}

.page-fishing-games__promo-button:hover {
    background-color: #1A3A7A;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-fishing-games__faq-accordion {
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eef4f8;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #e0eaf0;
}

.page-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    text-align: justify;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-fishing-games__faq-button {
    color: #0A2463;
    font-weight: bold;
    text-decoration: underline;
}

.page-fishing-games__faq-button:hover {
    color: #E3B505;
}

/* Final CTA Section */
.page-fishing-games__cta-section {
    background: linear-gradient(45deg, #0A2463, #335090); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    margin-top: 40px;
}

.page-fishing-games__cta-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #E3B505;
    font-weight: bold;
}

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

.page-fishing-games__cta-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E3B505;
}

.page-fishing-games__cta-button:hover {
    background-color: #f0c822;
    transform: translateY(-3px);
}

.page-fishing-games__cta-button--secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
}

.page-fishing-games__cta-button--secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games__hero-subtitle {
        font-size: 1.3em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-fishing-games__hero-actions,
    .page-fishing-games__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__hero-button,
    .page-fishing-games__cta-button {
        width: 80%;
        max-width: 300px;
        font-size: 1.1em;
    }
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games__feature-list,
    .page-fishing-games__tip-list,
    .page-fishing-games__promo-list,
    .page-fishing-games__reason-list,
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__guide-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-fishing-games__guide-item::before {
        margin-bottom: 10px;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1em;
    }
    .page-fishing-games__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-fishing-games__hero-button,
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__promo-title,
    .page-fishing-games__reason-title,
    .page-fishing-games__guide-title,
    .page-fishing-games__game-title {
        font-size: 1.4em;
    }
    .page-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-fishing-games__cta-title {
        font-size: 1.5em;
    }
}