/* style/fishing-games.css */

/* Custom Colors */
:root {
    --page-fishing-games-primary-color: #11A84E;
    --page-fishing-games-secondary-color: #22C768;
    --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-fishing-games-card-bg: #11271B;
    --page-fishing-games-background: #08160F;
    --page-fishing-games-text-main: #F2FFF6;
    --page-fishing-games-text-secondary: #A7D9B8;
    --page-fishing-games-border: #2E7A4E;
    --page-fishing-games-glow: #57E38D;
    --page-fishing-games-gold: #F2C14E;
    --page-fishing-games-divider: #1E3A2A;
    --page-fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--page-fishing-games-text-main); /* Default text color for the page */
    background-color: var(--page-fishing-games-background); /* Page background */
}

/* Fixed header spacing - body padding-top is handled by shared.css */
/* First section padding-top should be small, not var(--header-offset) */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px 60px 20px; /* Adjust padding for desktop, no top padding here */
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
    background-color: var(--page-fishing-games-background);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 40px; /* Add space below image */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-fishing-games__hero-content {
    z-index: 2;
    padding: 30px 20px;
    max-width: 900px;
    background-color: var(--page-fishing-games-card-bg); /* Use card background for consistency */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-fishing-games__description--light {
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__cta-buttons--center {
    margin-top: 30px;
}

.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: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main);
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-text-main);
    border: 2px solid var(--page-fishing-games-primary-color);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--page-fishing-games-primary-color);
    color: var(--page-fishing-games-text-main);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section {
    padding: 80px 20px;
    background-color: var(--page-fishing-games-background);
    border-bottom: 1px solid var(--page-fishing-games-divider);
}

.page-fishing-games__section:last-of-type {
    border-bottom: none;
}

.page-fishing-games__dark-section {
    background-color: var(--page-fishing-games-card-bg); /* Use card bg for dark section */
}

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

.page-fishing-games__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-fishing-games__section-title--light {
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-block strong {
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__image-card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__ordered-list li::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    color: var(--page-fishing-games-primary-color);
    font-weight: bold;
}

.page-fishing-games__unordered-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--page-fishing-games-primary-color);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-fishing-games__features-grid,
.page-fishing-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-item,
.page-fishing-games__benefit-item {
    background-color: var(--page-fishing-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--page-fishing-games-border);
}

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

.page-fishing-games__feature-title,
.page-fishing-games__benefit-title {
    font-size: 1.5rem;
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-description,
.page-fishing-games__benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--page-fishing-games-text-secondary);
}

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

.page-fishing-games__faq-item {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-text-main);
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    background-color: var(--page-fishing-games-card-bg);
    color: var(--page-fishing-games-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-fishing-games__faq-item summary::marker {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-content {
        padding: 25px 15px;
    }
    .page-fishing-games__content-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__image-card:nth-child(1) { /* For content grid, ensure image is on top for mobile */
        order: -1;
    }
    .page-fishing-games__section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 0 15px 40px 15px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-fishing-games__hero-content {
        padding: 20px 15px;
    }

    .page-fishing-games__main-title {
        font-size: 2.2rem;
    }

    .page-fishing-games__description {
        font-size: 1rem;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure content area images are at least 200px (this is a general rule, not a specific mobile one, but important for consistency) */
    .page-fishing-games__content-area img,
    .page-fishing-games__image-card img {
        min-width: 200px;
        min-height: 200px;
    }

    .page-fishing-games__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__ordered-list li,
    .page-fishing-games__unordered-list li,
    .page-fishing-games__feature-description,
    .page-fishing-games__benefit-description,
    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__benefits-grid {
        gap: 20px;
    }

    /* FAQ specific mobile adjustments */
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }
}