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

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-button-color: #EA7C07;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #26A9E0;
    --border-light: #e0e0e0;
}

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

.page-fishing-games-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
    background: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games-tips__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-fishing-games-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-fishing-games-tips__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.page-fishing-games-tips__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-fishing-games-tips__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-fishing-games-tips__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

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

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

.page-fishing-games-tips__btn-block {
    width: 100%;
    max-width: 350px;
    margin: 15px auto;
}

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

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

.page-fishing-games-tips__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-fishing-games-tips__sub-title {
    font-size: clamp(1.4em, 2.5vw, 1.8em);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.page-fishing-games-tips__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-fishing-games-tips__list-item {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-fishing-games-tips__image-container {
    text-align: center;
    margin: 30px 0;
    background-color: var(--background-light);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.page-fishing-games-tips__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

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

.page-fishing-games-tips__text-link:hover {
    color: darken(var(--primary-color), 10%);
}

.page-fishing-games-tips__keyword {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.page-fishing-games-tips__faq-section {
    padding: 60px 20px;
    background: var(--background-light);
    color: var(--text-dark);
}

.page-fishing-games-tips__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-fishing-games-tips__faq-item {
    background: var(--secondary-color);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-fishing-games-tips__faq-item summary {
    list-style: none;
}

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

.page-fishing-games-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-color);
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-light);
}

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

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

.page-fishing-games-tips__faq-item[open] .page-fishing-games-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games-tips__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Conclusion Section */
.page-fishing-games-tips__conclusion-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games-tips__conclusion-section .page-fishing-games-tips__section-title,
.page-fishing-games-tips__conclusion-section .page-fishing-games-tips__text-block {
    color: var(--text-light);
}

/* Color contrast classes */
.page-fishing-games-tips__dark-section {
    background: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips__section-title,
.page-fishing-games-tips__dark-section .page-fishing-games-tips__sub-title {
    color: var(--text-light);
}

.page-fishing-games-tips__light-bg {
    background: var(--background-light);
    color: var(--text-dark);
}

.page-fishing-games-tips__light-bg .page-fishing-games-tips__section-title,
.page-fishing-games-tips__light-bg .page-fishing-games-tips__sub-title {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-fishing-games-tips {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games-tips__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-fishing-games-tips__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-fishing-games-tips__description {
        font-size: 1em;
    }

    .page-fishing-games-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-fishing-games-tips__btn-primary,
    .page-fishing-games-tips__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games-tips__content-section,
    .page-fishing-games-tips__faq-section,
    .page-fishing-games-tips__conclusion-section {
        padding: 40px 15px;
    }

    .page-fishing-games-tips__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 30px;
    }

    .page-fishing-games-tips__sub-title {
        font-size: clamp(1.2em, 5vw, 1.6em);
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-fishing-games-tips__text-block,
    .page-fishing-games-tips__list-item,
    .page-fishing-games-tips__faq-answer p {
        font-size: 0.95em;
    }

    .page-fishing-games-tips__image-container,
    .page-fishing-games-tips__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-fishing-games-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-fishing-games-tips__faq-answer {
        padding: 10px 20px 15px;
    }
}