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

:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark: #1A202C;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
}

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

/* Sections */
.page-fishing-games-tips__section {
    padding: 60px 0;
    text-align: center;
}

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

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

.page-fishing-games-tips__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-fishing-games-tips__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-fishing-games-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.page-fishing-games-tips__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-fishing-games-tips__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-fishing-games-tips__logo-link {
    color: var(--text-light);
    text-decoration: none;
}

.page-fishing-games-tips__logo-link:hover {
    color: var(--secondary-color);
}

.page-fishing-games-tips__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    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: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-fishing-games-tips__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.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);
    transform: translateY(-3px);
}

/* General Content */
.page-fishing-games-tips__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__section-title {
    color: var(--secondary-color);
}

.page-fishing-games-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-fishing-games-tips__text-contrast-fix {
    color: var(--text-light) !important;
}

/* Feature Grid */
.page-fishing-games-tips__feature-grid, .page-fishing-games-tips__tips-grid, .page-fishing-games-tips__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-tips__feature-card,
.page-fishing-games-tips__tip-card,
.page-fishing-games-tips__strategy-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-dark);
}

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__feature-card,
.page-fishing-games-tips__dark-bg .page-fishing-games-tips__tip-card,
.page-fishing-games-tips__dark-bg .page-fishing-games-tips__strategy-card {
    background-color: var(--card-bg-dark);
    color: var(--text-light);
}

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

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

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__card-title {
    color: var(--secondary-color);
}

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

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__card-text {
    color: var(--text-light);
}

.page-fishing-games-tips__card-image,
.page-fishing-games-tips__content-image,
.page-fishing-games-tips__cta-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    display: block;
}

/* Video Section */
.page-fishing-games-tips__video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-fishing-games-tips__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

/* Table */
.page-fishing-games-tips__table-responsive {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-fishing-games-tips__fish-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is wide enough for content */
}

.page-fishing-games-tips__fish-table th,
.page-fishing-games-tips__fish-table td {
    border: 1px solid var(--border-color);
    padding: 15px;
    text-align: left;
    font-size: 1em;
}

.page-fishing-games-tips__fish-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
}

.page-fishing-games-tips__fish-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-fishing-games-tips__fish-table tbody tr:hover {
    background-color: #e9e9e9;
}

/* FAQ Section */
.page-fishing-games-tips__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-tips__faq-item {
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__faq-item {
    background-color: var(--card-bg-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__faq-question {
    color: var(--secondary-color);
}

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

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__faq-question:hover {
    color: var(--text-light);
}

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

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

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

.page-fishing-games-tips__dark-bg .page-fishing-games-tips__faq-answer {
    color: var(--text-light);
}

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

.page-fishing-games-tips__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.page-fishing-games-tips__cta-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-fishing-games-tips__cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: var(--text-light);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.page-fishing-games-tips__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
}

.page-fishing-games-tips__cta-box > h2,
.page-fishing-games-tips__cta-box > p,
.page-fishing-games-tips__cta-box > a {
    position: relative;
    z-index: 1;
}

.page-fishing-games-tips__cta-button {
    margin-top: 20px;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-tips__main-title {
        font-size: 3em;
    }
    .page-fishing-games-tips__section-title {
        font-size: 2em;
    }
}

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

    .page-fishing-games-tips__hero-section {
        min-height: 400px;
        padding: 80px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-fishing-games-tips__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-fishing-games-tips__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-fishing-games-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

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

    .page-fishing-games-tips__section {
        padding: 40px 0;
    }

    .page-fishing-games-tips__content-area {
        padding: 0 15px;
    }

    .page-fishing-games-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-fishing-games-tips__paragraph {
        font-size: 0.95em;
    }

    .page-fishing-games-tips__feature-grid,
    .page-fishing-games-tips__tips-grid,
    .page-fishing-games-tips__strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games-tips__feature-card,
    .page-fishing-games-tips__tip-card,
    .page-fishing-games-tips__strategy-card {
        padding: 20px;
    }

    /* Image Responsive */
    .page-fishing-games-tips img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games-tips__section,
    .page-fishing-games-tips__card,
    .page-fishing-games-tips__container,
    .page-fishing-games-tips__cta-box,
    .page-fishing-games-tips__table-responsive {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Video Responsive */
    .page-fishing-games-tips video,
    .page-fishing-games-tips__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games-tips__video-section,
    .page-fishing-games-tips__video-container,
    .page-fishing-games-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-tips__video-section {
      padding-top: var(--header-offset, 120px) !important;
    }
    .page-fishing-games-tips__video-container {
      padding-bottom: 75% !important; /* Adjust aspect ratio for mobile if needed, e.g., 4:3 */
    }

    .page-fishing-games-tips__fish-table {
        min-width: 100%;
    }

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

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

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

    .page-fishing-games-tips__cta-box {
        padding: 30px;
    }

    .page-fishing-games-tips__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}