/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-fishing-games-strategy__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-strategy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:ocean_pattern,abstract,subtle]') repeat center center;
    opacity: 0.1;
    z-index: 0;
}

.page-fishing-games-strategy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color for emphasis */
    position: relative;
    z-index: 1;
}

.page-fishing-games-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-fishing-games-strategy__hero-description a {
    color: #ffc107;
    text-decoration: underline;
}

.page-fishing-games-strategy__hero-description a:hover {
    color: #fff;
}

.page-fishing-games-strategy__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-fishing-games-strategy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__btn--primary {
    background-color: #ffc107;
    color: #0056b3; /* Darker shade of primary for contrast */
    border: 2px solid #ffc107;
}

.page-fishing-games-strategy__btn--primary:hover {
    background-color: #e0a800;
    color: #003f8e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-fishing-games-strategy__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffc107;
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-strategy__section--alt-bg {
    background-color: #e9ecef;
}

.page-fishing-games-strategy__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-fishing-games-strategy__text-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-fishing-games-strategy__text-intro a {
    color: #007bff;
    text-decoration: underline;
}

.page-fishing-games-strategy__text-intro a:hover {
    color: #0056b3;
}

.page-fishing-games-strategy__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

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

.page-fishing-games-strategy__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-fishing-games-strategy__feature-card h3 {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-fishing-games-strategy__feature-card p {
    color: #666;
}

.page-fishing-games-strategy__feature-card a {
    color: #007bff;
    text-decoration: none;
}

.page-fishing-games-strategy__feature-card a:hover {
    text-decoration: underline;
}

.page-fishing-games-strategy__strategy-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-fishing-games-strategy__strategy-item:nth-child(even) {
    flex-direction: row-reverse;
}

.page-fishing-games-strategy__strategy-item h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 20px;
    width: 100%;
}

.page-fishing-games-strategy__strategy-item p {
    flex: 1;
    min-width: 300px;
    font-size: 1.05em;
    color: #444;
}

.page-fishing-games-strategy__strategy-item p a {
    color: #007bff;
    text-decoration: underline;
}

.page-fishing-games-strategy__strategy-item p a:hover {
    color: #0056b3;
}

.page-fishing-games-strategy__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.page-fishing-games-strategy__image--left {
    margin-right: 20px;
}

.page-fishing-games-strategy__image--right {
    margin-left: 20px;
}

.page-fishing-games-strategy__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games-strategy__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: #444;
    border-left: 5px solid #ffc107;
}

.page-fishing-games-strategy__list li strong {
    color: #007bff;
}

.page-fishing-games-strategy__list li a {
    color: #007bff;
    text-decoration: underline;
}

.page-fishing-games-strategy__list li a:hover {
    color: #0056b3;
}

.page-fishing-games-strategy__cta-block {
    text-align: center;
    margin-top: 50px;
    background-color: #007bff;
    padding: 40px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__cta-text {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffc107;
}

.page-fishing-games-strategy__cta-text a {
    color: #ffc107;
    text-decoration: underline;
}

.page-fishing-games-strategy__cta-text a:hover {
    color: #fff;
}

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

.page-fishing-games-strategy__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff;
}

.page-fishing-games-strategy__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-fishing-games-strategy__faq-question a {
    color: #007bff;
    text-decoration: underline;
}

.page-fishing-games-strategy__faq-question a:hover {
    color: #0056b3;
}

.page-fishing-games-strategy__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: block; /* Initially hidden, can be toggled with JS */
}

.page-fishing-games-strategy__faq-answer a {
    color: #007bff;
    text-decoration: underline;
}

.page-fishing-games-strategy__faq-answer a:hover {
    color: #0056b3;
}

.page-fishing-games-strategy__section--final-cta {
    background-color: #0056b3;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-fishing-games-strategy__section--final-cta .page-fishing-games-strategy__section-title {
    color: #ffc107;
}

.page-fishing-games-strategy__section--final-cta .page-fishing-games-strategy__section-title::after {
    background-color: #fff;
}

.page-fishing-games-strategy__section--final-cta .page-fishing-games-strategy__text-intro {
    color: #eee;
    margin-bottom: 50px;
}

.page-fishing-games-strategy__section--final-cta .page-fishing-games-strategy__text-intro a {
    color: #ffc107;
}

.page-fishing-games-strategy__section--final-cta .page-fishing-games-strategy__text-intro a:hover {
    color: #fff;
}

.page-fishing-games-strategy__final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-strategy__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 2em;
    }
    .page-fishing-games-strategy__strategy-item {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games-strategy__strategy-item:nth-child(even) {
        flex-direction: column;
    }
    .page-fishing-games-strategy__image--left, .page-fishing-games-strategy__image--right {
        margin: 20px auto;
    }
    .page-fishing-games-strategy__image {
        max-width: 80%;
    }
    .page-fishing-games-strategy__hero-cta, .page-fishing-games-strategy__final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-strategy__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-strategy__hero {
        padding: 60px 0;
    }
    .page-fishing-games-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games-strategy__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy__text-intro {
        font-size: 0.95em;
    }
    .page-fishing-games-strategy__feature-card {
        padding: 20px;
    }
    .page-fishing-games-strategy__feature-card h3 {
        font-size: 1.2em;
    }
    .page-fishing-games-strategy__strategy-item h3 {
        font-size: 1.5em;
    }
    .page-fishing-games-strategy__list li, .page-fishing-games-strategy__faq-item {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-fishing-games-strategy__faq-question {
        font-size: 1.1em;
    }
    .page-fishing-games-strategy__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-strategy__btn {
        font-size: 1em;
        padding: 12px 20px;
        width: 90%;
    }
    .page-fishing-games-strategy__image {
        max-width: 95%;
    }
    .page-fishing-games-strategy__hero-cta, .page-fishing-games-strategy__final-cta-buttons {
        gap: 10px;
    }
    .page-fishing-games-strategy__cta-text {
        font-size: 1.4em;
    }
}