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

.page-fishing-games-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF);
}

.page-fishing-games-strategy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
    min-height: 500px;
    overflow: hidden;
    background-color: #f0f8ff; /* Light background for hero */
}

.page-fishing-games-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-fishing-games-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.page-fishing-games-strategy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: #ffffff; /* White text on hero image */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-fishing-games-strategy__hero-button {
    display: inline-block;
    background-color: #EA7C07; /* Login/Register color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__hero-button:hover {
    background-color: #d46c00;
}

.page-fishing-games-strategy__section {
    padding: 60px 20px;
    margin-bottom: 0;
}

.page-fishing-games-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-fishing-games-strategy__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
}

.page-fishing-games-strategy__text-block {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 30px;
}

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

.page-fishing-games-strategy__image-content--center {
    text-align: center;
}

.page-fishing-games-strategy__list {
    list-style: disc inside;
    margin-left: 20px;
    font-size: 1.1em;
}

.page-fishing-games-strategy__list-item {
    margin-bottom: 10px;
}

.page-fishing-games-strategy__dark-section {
    background-color: #26A9E0; /* Brand main color for dark section */
    color: #ffffff;
}

.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__section-title {
    color: #ffffff;
}

.page-fishing-games-strategy__dark-section .page-fishing-games-strategy__text-block {
    color: #ffffff;
}

.page-fishing-games-strategy__strategy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-fishing-games-strategy__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

.page-fishing-games-strategy__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-strategy__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-fishing-games-strategy__card-text {
    font-size: 1em;
    line-height: 1.6;
}

.page-fishing-games-strategy__button-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 30px;
}

.page-fishing-games-strategy__button-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

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

.page-fishing-games-strategy__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #ffffff;
}

.page-fishing-games-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__faq-question:hover {
    background-color: #eef;
}

.page-fishing-games-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-fishing-games-strategy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.page-fishing-games-strategy__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555555;
}

.page-fishing-games-strategy__cta-final {
    background-color: #26A9E0; /* Brand main color */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

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

.page-fishing-games-strategy__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-fishing-games-strategy__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.page-fishing-games-strategy__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login/Register color */
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__cta-button:hover {
    background-color: #d46c00;
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .page-fishing-games-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games-strategy__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 2em;
    }
    .page-fishing-games-strategy__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-strategy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games-strategy__hero-section {
        padding: 40px 15px;
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-fishing-games-strategy__hero-content {
        padding: 0 15px;
    }

    .page-fishing-games-strategy__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-fishing-games-strategy__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-fishing-games-strategy__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-fishing-games-strategy__section {
        padding: 40px 15px;
    }

    .page-fishing-games-strategy__container {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

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

    .page-fishing-games-strategy__text-block,
    .page-fishing-games-strategy__list-item,
    .page-fishing-games-strategy__card-text {
        font-size: 1em;
    }

    .page-fishing-games-strategy__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-fishing-games-strategy__strategy-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-fishing-games-strategy__card {
        padding: 25px;
    }

    .page-fishing-games-strategy__card-title {
        font-size: 1.3em;
    }

    .page-fishing-games-strategy__button-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
    }

    .page-fishing-games-strategy__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

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

    .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
        padding: 15px 20px;
    }

    .page-fishing-games-strategy__cta-final {
        padding: 60px 15px;
    }

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

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

    .page-fishing-games-strategy__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 1.6em;
    }
    .page-fishing-games-strategy__cta-title {
        font-size: 1.8em;
    }
}