/* style/fishing-games.css */

/* Base styles for the fishing games page */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light background */
    background-color: #f8f9fa; /* Light background for the page */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    background-color: #007bff; /* Main brand color */
    color: #ffffff; /* White text for dark background */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games__hero-section .page-fishing-games__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

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

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

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games__btn-primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #333333; /* Dark text for light background button */
    border: 2px solid #ffc107;
}

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

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

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

.page-fishing-games__hero-image {
    margin-top: 40px;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* General Section Styling */
.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__providers-section,
.page-fishing-games__strategy-section,
.page-fishing-games__benefits-section,
.page-fishing-games__cta-final-section {
    padding: 60px 0;
    background-color: #007bff; /* Main brand color */
    color: #ffffff; /* White text for dark background */
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: #007bff; /* Main brand color for titles on light background */
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-fishing-games__image-content {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* Card Grid */
.page-fishing-games__card-grid,
.page-fishing-games__promo-cards,
.page-fishing-games__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__card {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__dark-bg .page-fishing-games__card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__dark-bg .page-fishing-games__card .page-fishing-games__card-title {
    color: #ffc107; /* Auxiliary color for titles on dark cards */
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #007bff; /* Main brand color for titles on light cards */
}

.page-fishing-games__card-text {
    font-size: 1em;
    line-height: 1.7;
}

/* Lists */
.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding-left: 25px;
    font-size: 1.1em;
    color: #333333;
}

.page-fishing-games__dark-bg .page-fishing-games__ordered-list,
.page-fishing-games__dark-bg .page-fishing-games__unordered-list {
    color: #ffffff;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li {
    margin-bottom: 10px;
}

.page-fishing-games__ordered-list strong,
.page-fishing-games__unordered-list strong {
    color: #007bff; /* Main brand color for strong text */
}

.page-fishing-games__dark-bg .page-fishing-games__ordered-list strong,
.page-fishing-games__dark-bg .page-fishing-games__unordered-list strong {
    color: #ffc107; /* Auxiliary color for strong text on dark background */
}

/* CTA Center */
.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-fishing-games__btn-large {
    padding: 18px 35px;
    font-size: 1.1em;
    margin: 10px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
}

.page-fishing-games__faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff; /* Main brand color for questions */
    transition: color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    color: #0056b3; /* Darker shade on hover */
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    font-size: 1em; /* Adjust to fit parent font size */
    color: inherit; /* Inherit color from parent */
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1.1em;
    color: #555555;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__hero-title {
        font-size: 2.5em;
    }

    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }

    .page-fishing-games__section-title {
        font-size: 2em;
    }

    .page-fishing-games__card-grid,
    .page-fishing-games__promo-cards,
    .page-fishing-games__benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Fixed Header Offset - if not provided by shared.css body padding */
    .page-fishing-games__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-fishing-games__hero-title {
        font-size: 2em;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__card-text,
    .page-fishing-games__ordered-list,
    .page-fishing-games__unordered-list,
    .page-fishing-games__faq-question,
    .page-fishing-games__faq-answer {
        font-size: 1em;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
}