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

/* Custom Colors */
:root {
    --page-fishing-games-fishing-tips-primary: #11A84E;
    --page-fishing-games-fishing-tips-secondary: #22C768;
    --page-fishing-games-fishing-tips-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-fishing-games-fishing-tips-card-bg: #11271B;
    --page-fishing-games-fishing-tips-background: #08160F;
    --page-fishing-games-fishing-tips-text-main: #F2FFF6;
    --page-fishing-games-fishing-tips-text-secondary: #A7D9B8;
    --page-fishing-games-fishing-tips-border: #2E7A4E;
    --page-fishing-games-fishing-tips-glow: #57E38D;
    --page-fishing-games-fishing-tips-gold: #F2C14E;
    --page-fishing-games-fishing-tips-divider: #1E3A2A;
    --page-fishing-games-fishing-tips-deep-green: #0A4B2C;
}

.page-fishing-games-fishing-tips {
    font-family: Arial, sans-serif;
    background-color: var(--page-fishing-games-fishing-tips-background);
    color: var(--page-fishing-games-fishing-tips-text-main); /* Light text for dark background */
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-fishing-games-fishing-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 40px; /* Small top padding, body handles header offset */
    background-color: var(--page-fishing-games-fishing-tips-background);
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games-fishing-tips__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 20px;
}

.page-fishing-games-fishing-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height to maintain aspect ratio for large screens */
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games-fishing-tips__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    color: var(--page-fishing-games-fishing-tips-text-main);
}

.page-fishing-games-fishing-tips__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--page-fishing-games-fishing-tips-gold);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

.page-fishing-games-fishing-tips__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.page-fishing-games-fishing-tips__btn-primary,
.page-fishing-games-fishing-tips__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games-fishing-tips__btn-primary {
    background: var(--page-fishing-games-fishing-tips-button-gradient);
    color: var(--page-fishing-games-fishing-tips-text-main);
    border: 2px solid transparent;
}

.page-fishing-games-fishing-tips__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.page-fishing-games-fishing-tips__btn-secondary:hover {
    background-color: var(--page-fishing-games-fishing-tips-primary);
    color: var(--page-fishing-games-fishing-tips-text-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-fishing-games-fishing-tips__btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.page-fishing-games-fishing-tips__content-area {
    width: 100%; /* Ensure content area takes full width */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--page-fishing-games-fishing-tips-background);
    color: var(--page-fishing-games-fishing-tips-text-main);
}

.page-fishing-games-fishing-tips__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--page-fishing-games-fishing-tips-gold);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-fishing-games-fishing-tips p {
    margin-bottom: 15px;
    color: var(--page-fishing-games-fishing-tips-text-main);
}

.page-fishing-games-fishing-tips a {
    color: var(--page-fishing-games-fishing-tips-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-fishing-tips a:hover {
    color: var(--page-fishing-games-fishing-tips-gold);
    text-decoration: underline;
}

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

.page-fishing-games-fishing-tips__grid-item {
    background-color: var(--page-fishing-games-fishing-tips-card-bg); /* Dark card background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--page-fishing-games-fishing-tips-text-main); /* Light text for card */
    border: 1px solid var(--page-fishing-games-fishing-tips-border);
}

.page-fishing-games-fishing-tips__item-title {
    font-size: 1.5rem;
    color: var(--page-fishing-games-fishing-tips-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-fishing-tips__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-fishing-games-fishing-tips__advanced-tips {
    background-color: var(--page-fishing-games-fishing-tips-card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--page-fishing-games-fishing-tips-text-main);
    border: 1px solid var(--page-fishing-games-fishing-tips-border);
}

.page-fishing-games-fishing-tips__advanced-tips h3 {
    font-size: 1.4rem;
    color: var(--page-fishing-games-fishing-tips-gold);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-fishing-games-fishing-tips__mistakes-list li {
    background-color: var(--page-fishing-games-fishing-tips-card-bg);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--page-fishing-games-fishing-tips-primary);
    color: var(--page-fishing-games-fishing-tips-text-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-fishing-games-fishing-tips__mistakes-list li strong {
    color: var(--page-fishing-games-fishing-tips-gold);
}

.page-fishing-games-fishing-tips__faq-list {
    margin-top: 30px;
}

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

.page-fishing-games-fishing-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--page-fishing-games-fishing-tips-gold);
    cursor: pointer;
    background-color: var(--page-fishing-games-fishing-tips-deep-green);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-fishing-games-fishing-tips__faq-item[open] .page-fishing-games-fishing-tips__faq-question {
    background-color: var(--page-fishing-games-fishing-tips-primary);
}

.page-fishing-games-fishing-tips__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-fishing-games-fishing-tips__faq-question:hover {
    background-color: var(--page-fishing-games-fishing-tips-primary);
}

.page-fishing-games-fishing-tips__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-fishing-games-fishing-tips__faq-answer {
    padding: 15px 25px 20px;
    background-color: var(--page-fishing-games-fishing-tips-card-bg);
    color: var(--page-fishing-games-fishing-tips-text-secondary);
    font-size: 1rem;
}

.page-fishing-games-fishing-tips__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: var(--page-fishing-games-fishing-tips-deep-green);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--page-fishing-games-fishing-tips-text-main);
    border: 1px solid var(--page-fishing-games-fishing-tips-border);
}

.page-fishing-games-fishing-tips__cta-section .page-fishing-games-fishing-tips__section-title {
    color: var(--page-fishing-games-fishing-tips-gold);
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-fishing-tips__hero-content {
        max-width: 700px;
    }
    .page-fishing-games-fishing-tips__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games-fishing-tips__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-fishing-tips__hero-section {
        padding: 10px 15px 30px;
    }
    .page-fishing-games-fishing-tips__hero-image-wrapper {
        margin-bottom: 15px;
    }
    .page-fishing-games-fishing-tips__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        padding: 0 10px;
    }
    .page-fishing-games-fishing-tips__description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    .page-fishing-games-fishing-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-fishing-games-fishing-tips__btn-primary,
    .page-fishing-games-fishing-tips__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games-fishing-tips__content-area {
        padding: 30px 15px;
    }
    .page-fishing-games-fishing-tips__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-fishing-games-fishing-tips__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games-fishing-tips__grid-item,
    .page-fishing-games-fishing-tips__advanced-tips,
    .page-fishing-games-fishing-tips__mistakes-list li,
    .page-fishing-games-fishing-tips__faq-item,
    .page-fishing-games-fishing-tips__cta-section {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto;
        margin-right: auto;
    }
    .page-fishing-games-fishing-tips img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* All image containers */
    .page-fishing-games-fishing-tips__hero-image-wrapper,
    .page-fishing-games-fishing-tips__grid-item,
    .page-fishing-games-fishing-tips__advanced-tips,
    .page-fishing-games-fishing-tips__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    /* Video related, although this page doesn't have a video, keeping the rule for safety */
    .page-fishing-games-fishing-tips video,
    .page-fishing-games-fishing-tips__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-fishing-tips__video-section,
    .page-fishing-games-fishing-tips__video-container,
    .page-fishing-games-fishing-tips__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-fishing-tips__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}