/* style/blog-b66-fishing-pro-tips.css */
/* Custom colors */
:root {
    --b66-color-primary: #11A84E;
    --b66-color-secondary: #22C768;
    --b66-color-button-gradient-start: #2AD16F;
    --b66-color-button-gradient-end: #13994A;
    --b66-color-card-bg: #11271B;
    --b66-color-background: #08160F;
    --b66-color-text-main: #F2FFF6;
    --b66-color-text-secondary: #A7D9B8;
    --b66-color-border: #2E7A4E;
    --b66-color-glow: #57E38D;
    --b66-color-gold: #F2C14E;
    --b66-color-divider: #1E3A2A;
    --b66-color-deep-green: #0A4B2C;
}

/* Base styles for the page, assuming a dark body background from shared.css */
.page-blog-b66-fishing-pro-tips {
    background-color: var(--b66-color-background);
    color: var(--b66-color-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-b66-fishing-pro-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-b66-fishing-pro-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--b66-color-deep-green);
    overflow: hidden;
}

.page-blog-b66-fishing-pro-tips__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-b66-fishing-pro-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-b66-fishing-pro-tips__hero-content {
    position: relative; /* Not absolute, for normal flow */
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin-top: 20px; /* Separates from image */
    background-color: var(--b66-color-card-bg);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-blog-b66-fishing-pro-tips__main-title {
    color: var(--b66-color-gold);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 8px var(--b66-color-glow);
}

.page-blog-b66-fishing-pro-tips__description {
    color: var(--b66-color-text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-b66-fishing-pro-tips__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, var(--b66-color-button-gradient-start) 0%, var(--b66-color-button-gradient-end) 100%);
    color: var(--b66-color-text-main);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-blog-b66-fishing-pro-tips__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-b66-fishing-pro-tips__section-title {
    color: var(--b66-color-gold);
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.page-blog-b66-fishing-pro-tips__introduction-section,
.page-blog-b66-fishing-pro-tips__techniques-section,
.page-blog-b66-fishing-pro-tips__advanced-strategies-section,
.page-blog-b66-fishing-pro-tips__pro-tips-section,
.page-blog-b66-fishing-pro-tips__faq-section,
.page-blog-b66-fishing-pro-tips__cta-section {
    padding: 60px 0;
    background-color: var(--b66-color-background);
}

.page-blog-b66-fishing-pro-tips__techniques-section .page-blog-b66-fishing-pro-tips__grid,
.page-blog-b66-fishing-pro-tips__advanced-strategies-section .page-blog-b66-fishing-pro-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-b66-fishing-pro-tips__technique-card,
.page-blog-b66-fishing-pro-tips__strategy-card {
    background-color: var(--b66-color-card-bg);
    border: 1px solid var(--b66-color-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-b66-fishing-pro-tips__technique-card:hover,
.page-blog-b66-fishing-pro-tips__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-b66-fishing-pro-tips__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-b66-fishing-pro-tips__card-title {
    color: var(--b66-color-text-main);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-blog-b66-fishing-pro-tips__technique-card p,
.page-blog-b66-fishing-pro-tips__strategy-card p {
    color: var(--b66-color-text-secondary);
}

.page-blog-b66-fishing-pro-tips__pro-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-b66-fishing-pro-tips__list-item {
    display: flex;
    align-items: center;
    background-color: var(--b66-color-card-bg);
    border: 1px solid var(--b66-color-border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-b66-fishing-pro-tips__list-icon {
    width: 100px;
    height: 100px;
    min-width: 100px; /* Ensure minimum size */
    min-height: 100px; /* Ensure minimum size */
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

.page-blog-b66-fishing-pro-tips__list-content {
    flex-grow: 1;
}

.page-blog-b66-fishing-pro-tips__list-title {
    color: var(--b66-color-text-main);
    font-size: 1.3em;
    margin-bottom: 5px;
}

.page-blog-b66-fishing-pro-tips__list-item p {
    color: var(--b66-color-text-secondary);
}

.page-blog-b66-fishing-pro-tips__faq-list {
    margin-top: 30px;
}

.page-blog-b66-fishing-pro-tips__faq-item {
    background-color: var(--b66-color-card-bg);
    border: 1px solid var(--b66-color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-b66-fishing-pro-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    color: var(--b66-color-text-main);
    font-weight: bold;
    font-size: 1.1em;
    background-color: var(--b66-color-deep-green);
    border-bottom: 1px solid var(--b66-color-divider);
}

.page-blog-b66-fishing-pro-tips__faq-question:hover {
    background-color: var(--b66-color-primary);
}

.page-blog-b66-fishing-pro-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-blog-b66-fishing-pro-tips__faq-answer {
    padding: 20px 25px;
    color: var(--b66-color-text-secondary);
    background-color: var(--b66-color-card-bg);
}

.page-blog-b66-fishing-pro-tips__faq-answer p {
    margin-bottom: 0;
}

.page-blog-b66-fishing-pro-tips__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-b66-fishing-pro-tips__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-b66-fishing-pro-tips__cta-button--primary {
    background: linear-gradient(180deg, var(--b66-color-button-gradient-start) 0%, var(--b66-color-button-gradient-end) 100%);
    color: var(--b66-color-text-main);
}

.page-blog-b66-fishing-pro-tips__cta-button--secondary {
    background: var(--b66-color-card-bg);
    color: var(--b66-color-primary);
    border: 2px solid var(--b66-color-primary);
}

.page-blog-b66-fishing-pro-tips__cta-button--secondary:hover {
    background: var(--b66-color-primary);
    color: var(--b66-color-text-main);
}

/* General image responsiveness */
.page-blog-b66-fishing-pro-tips img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-b66-fishing-pro-tips {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-b66-fishing-pro-tips__hero-content {
        padding: 20px;
        margin-top: 10px;
    }

    .page-blog-b66-fishing-pro-tips__main-title {
        font-size: 2em;
    }

    .page-blog-b66-fishing-pro-tips__description {
        font-size: 1em;
    }

    .page-blog-b66-fishing-pro-tips__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-b66-fishing-pro-tips__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-b66-fishing-pro-tips__section-title {
        font-size: 1.8em;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .page-blog-b66-fishing-pro-tips__introduction-section,
    .page-blog-b66-fishing-pro-tips__techniques-section,
    .page-blog-b66-fishing-pro-tips__advanced-strategies-section,
    .page-blog-b66-fishing-pro-tips__pro-tips-section,
    .page-blog-b66-fishing-pro-tips__faq-section,
    .page-blog-b66-fishing-pro-tips__cta-section {
        padding: 30px 0;
    }

    .page-blog-b66-fishing-pro-tips__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-b66-fishing-pro-tips__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-b66-fishing-pro-tips__card-image {
        height: 180px;
    }

    .page-blog-b66-fishing-pro-tips__list-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .page-blog-b66-fishing-pro-tips__list-icon {
        margin: 0 auto 15px auto;
        width: 150px;
        height: 150px;
        min-width: 150px !important;
        min-height: 150px !important;
    }

    .page-blog-b66-fishing-pro-tips__list-content {
        margin-left: 0;
    }

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

    /* Ensure all images are responsive */
    .page-blog-b66-fishing-pro-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure video containers are responsive */
    .page-blog-b66-fishing-pro-tips__video-section,
    .page-blog-b66-fishing-pro-tips__video-container,
    .page-blog-b66-fishing-pro-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-blog-b66-fishing-pro-tips__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}