/* style/fishing-games-strategy.css */

/* Variables from custom palette */
:root {
    --page-fishing-games-strategy-card-bg: #11271B;
    --page-fishing-games-strategy-bg: #08160F;
    --page-fishing-games-strategy-text-main: #F2FFF6;
    --page-fishing-games-strategy-text-secondary: #A7D9B8;
    --page-fishing-games-strategy-border: #2E7A4E;
    --page-fishing-games-strategy-glow: #57E38D;
    --page-fishing-games-strategy-gold: #F2C14E;
    --page-fishing-games-strategy-divider: #1E3A2A;
    --page-fishing-games-strategy-deep-green: #0A4B2C;
    --page-fishing-games-strategy-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, assuming body background is dark */
.page-fishing-games-strategy {
    color: var(--page-fishing-games-strategy-text-main); /* Light text for dark background */
    background-color: var(--page-fishing-games-strategy-bg);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games-strategy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-fishing-games-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit hero image height */
}

.page-fishing-games-strategy__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up over the image slightly for visual flow */
    background-color: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-strategy-border);
}

.page-fishing-games-strategy__main-title {
    color: var(--page-fishing-games-strategy-gold);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games-strategy__subtitle {
    color: var(--page-fishing-games-strategy-text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin-bottom: 30px;
}

/* General Section Styles */
.page-fishing-games-strategy__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-fishing-games-strategy-divider);
}

.page-fishing-games-strategy__content-section.page-fishing-games-strategy__dark-bg {
    background-color: var(--page-fishing-games-strategy-card-bg);
}

.page-fishing-games-strategy__section-title {
    color: var(--page-fishing-games-strategy-gold);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-fishing-games-strategy__sub-title {
    color: var(--page-fishing-games-strategy-text-main);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 4px solid var(--page-fishing-games-strategy-gold);
    padding-left: 15px;
}

.page-fishing-games-strategy__paragraph {
    color: var(--page-fishing-games-strategy-text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.page-fishing-games-strategy__text-main {
    color: var(--page-fishing-games-strategy-text-main);
    font-weight: bold;
}

.page-fishing-games-strategy__text-link {
    color: var(--page-fishing-games-strategy-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-strategy__text-link:hover {
    color: var(--page-fishing-games-strategy-gold);
    text-decoration: underline;
}

.page-fishing-games-strategy__list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
    color: var(--page-fishing-games-strategy-text-secondary);
}

.page-fishing-games-strategy__list-item {
    margin-bottom: 10px;
    color: var(--page-fishing-games-strategy-text-secondary);
}

.page-fishing-games-strategy__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-fishing-games-strategy-border);
}

/* CTA Button Styles */
.page-fishing-games-strategy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games-strategy__btn-primary {
    background: var(--page-fishing-games-strategy-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-strategy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(42, 209, 111, 0.6);
}

.page-fishing-games-strategy__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-strategy-glow);
    border: 2px solid var(--page-fishing-games-strategy-glow);
    box-shadow: 0 4px 10px rgba(87, 227, 141, 0.2);
}

.page-fishing-games-strategy__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(87, 227, 141, 0.4);
}

.page-fishing-games-strategy__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-fishing-games-strategy-deep-green);
    border-top: 1px solid var(--page-fishing-games-strategy-divider);
}

.page-fishing-games-strategy__cta-content {
    max-width: 800px;
}

.page-fishing-games-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* FAQ Section */
.page-fishing-games-strategy__faq-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-strategy-bg);
}

.page-fishing-games-strategy__faq-list {
    margin-top: 40px;
}

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

.page-fishing-games-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: var(--page-fishing-games-strategy-text-main);
    font-weight: 600;
    font-size: 1.15rem;
    transition: background-color 0.3s ease;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-fishing-games-strategy__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-question {
    background-color: var(--page-fishing-games-strategy-deep-green);
}

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

.page-fishing-games-strategy__faq-answer {
    padding: 0 20px 20px;
    color: var(--page-fishing-games-strategy-text-secondary);
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games-strategy__hero-content {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-strategy__hero-section {
        padding-bottom: 40px;
    }

    .page-fishing-games-strategy__hero-content {
        margin-top: -60px;
        padding: 15px;
        border-radius: 8px;
    }

    .page-fishing-games-strategy__main-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .page-fishing-games-strategy__subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-fishing-games-strategy__sub-title {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-left: 10px;
    }

    .page-fishing-games-strategy__paragraph,
    .page-fishing-games-strategy__list-item {
        font-size: 1rem;
    }

    .page-fishing-games-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games-strategy__content-section,
    .page-fishing-games-strategy__faq-section,
    .page-fishing-games-strategy__cta-section {
        padding: 40px 0;
    }

    .page-fishing-games-strategy__container {
        padding: 0 15px; /* Add side padding for mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsive for mobile */
    .page-fishing-games-strategy img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure containers holding images are also responsive */
    .page-fishing-games-strategy__section,
    .page-fishing-games-strategy__card,
    .page-fishing-games-strategy__container,
    .page-fishing-games-strategy__hero-section,
    .page-fishing-games-strategy__content-section,
    .page-fishing-games-strategy__faq-section,
    .page-fishing-games-strategy__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent content overflow */
    }

    .page-fishing-games-strategy__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-fishing-games-strategy__faq-answer {
        padding: 0 15px 15px;
    }
}

/* No CSS filters for images */
.page-fishing-games-strategy img {
    filter: none; /* Ensure no image filters are applied */
}