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

:root {
    --primary-color: #0A246A;
    --secondary-color: #E3A72F;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #0A246A;
    --border-color: #e0e0e0;
}

.page-fishing-games-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark); /* Default text color for light body background */
    line-height: 1.6;
}

.page-fishing-games-guide__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow: hidden;
}

.page-fishing-games-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games-guide__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-fishing-games-guide__intro-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

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

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

.page-fishing-games-guide__section {
    padding: 60px 20px;
}

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

.page-fishing-games-guide__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-fishing-games-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.page-fishing-games-guide__about-fishing p,
.page-fishing-games-guide__gameplay-guide p,
.page-fishing-games-guide__weapons-skills p,
.page-fishing-games-guide__strategies p,
.page-fishing-games-guide__g88-features p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-fishing-games-guide__about-fishing .page-fishing-games-guide__section-title,
.page-fishing-games-guide__gameplay-guide .page-fishing-games-guide__section-title,
.page-fishing-games-guide__strategies .page-fishing-games-guide__section-title,
.page-fishing-games-guide__faq-section .page-fishing-games-guide__section-title {
    color: var(--primary-color);
}

.page-fishing-games-guide__dark-section .page-fishing-games-guide__section-title {
    color: var(--secondary-color);
}

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

.page-fishing-games-guide__ordered-list,
.page-fishing-games-guide__unordered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-fishing-games-guide__ordered-list li,
.page-fishing-games-guide__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
}

.page-fishing-games-guide__ordered-list li::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    width: 20px;
    text-align: right;
}

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

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

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

.page-fishing-games-guide__card {
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark);
}

.page-fishing-games-guide__card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-fishing-games-guide__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-fishing-games-guide__card p {
    font-size: 1em;
    color: var(--text-dark);
}

.page-fishing-games-guide__btn-primary,
.page-fishing-games-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

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

.page-fishing-games-guide__btn-primary:hover {
    background-color: #d1932b;
    border-color: #d1932b;
}

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

.page-fishing-games-guide__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-fishing-games-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-fishing-games-guide__cta-buttons--centered {
    justify-content: center;
}

.page-fishing-games-guide__faq-section {
    background-color: var(--background-light);
}

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

.page-fishing-games-guide__faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
}

.page-fishing-games-guide__faq-question:hover {
    background-color: #f0f0f0;
}

.page-fishing-games-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

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

.page-fishing-games-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
}

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

.page-fishing-games-guide__faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

.page-fishing-games-guide__call-to-action {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

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

.page-fishing-games-guide__call-to-action .page-fishing-games-guide__section-title {
    color: var(--secondary-color);
}

.page-fishing-games-guide__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-fishing-games-guide__inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-fishing-games-guide__dark-section .page-fishing-games-guide__inline-link {
    color: var(--secondary-color);
}

.page-fishing-games-guide__inline-link:hover {
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games-guide__main-title {
        font-size: 2.8em;
    }
    .page-fishing-games-guide__intro-text {
        font-size: 1.1em;
    }
    .page-fishing-games-guide__section-title {
        font-size: 2em;
    }
    .page-fishing-games-guide__grid-2-cols,
    .page-fishing-games-guide__grid-3-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games-guide__hero-section {
        min-height: 400px;
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-fishing-games-guide__main-title {
        font-size: 2.2em;
    }
    .page-fishing-games-guide__intro-text {
        font-size: 1em;
    }
    .page-fishing-games-guide__section {
        padding: 40px 15px;
    }
    .page-fishing-games-guide__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-guide__btn-primary,
    .page-fishing-games-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-fishing-games-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-guide video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-guide__section,
    .page-fishing-games-guide__card,
    .page-fishing-games-guide__container,
    .page-fishing-games-guide__cta-buttons,
    .page-fishing-games-guide__video-section,
    .page-fishing-games-guide__video-container,
    .page-fishing-games-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games-guide__card-image {
      min-width: 200px !important;
      min-height: 200px !important;
      width: 100% !important;
      height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-guide__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games-guide__intro-text {
        font-size: 0.9em;
    }
    .page-fishing-games-guide__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-guide__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-fishing-games-guide__faq-answer {
        padding: 10px 15px;
    }
}