/* style/fishing-games-advanced-techniques.css */
.page-fishing-games-advanced-techniques {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A1931; /* Main background color */
    line-height: 1.6;
    font-size: 16px;
}

.page-fishing-games-advanced-techniques a {
    color: #FFD700; /* Links in gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-advanced-techniques a:hover {
    color: #e6c200; /* Slightly darker gold on hover */
}

.page-fishing-games-advanced-techniques .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fishing-games-advanced-techniques .hero-section {
    background: linear-gradient(135deg, #0A1931, #2c3e50); /* Dark blue to a slightly lighter dark blue for depth */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-fishing-games-advanced-techniques .hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Background image effect */
    z-index: 1;
}

.page-fishing-games-advanced-techniques .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games-advanced-techniques .hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-advanced-techniques .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Light gray for body text */
}

.page-fishing-games-advanced-techniques .btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-fishing-games-advanced-techniques .btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-fishing-games-advanced-techniques section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-fishing-games-advanced-techniques section:last-of-type {
    border-bottom: none;
}

.page-fishing-games-advanced-techniques .section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-fishing-games-advanced-techniques .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-fishing-games-advanced-techniques h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fishing-games-advanced-techniques p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-fishing-games-advanced-techniques ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-fishing-games-advanced-techniques ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-fishing-games-advanced-techniques ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.page-fishing-games-advanced-techniques .image-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-fishing-games-advanced-techniques .image-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games-advanced-techniques .image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games-advanced-techniques .image-item .caption {
    padding: 15px;
    font-size: 0.95em;
    color: #E0E0E0;
    text-align: center;
}

.page-fishing-games-advanced-techniques .faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-fishing-games-advanced-techniques .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #FFD700;
    background-color: rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease;
}

.page-fishing-games-advanced-techniques .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-fishing-games-advanced-techniques .faq-question .icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-fishing-games-advanced-techniques .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #E0E0E0;
}

.page-fishing-games-advanced-techniques .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

.page-fishing-games-advanced-techniques .faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.page-fishing-games-advanced-techniques .cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #0A1931;
    color: #FFFFFF;
}

.page-fishing-games-advanced-techniques .cta-section h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
}

.page-fishing-games-advanced-techniques .cta-buttons .btn {
    margin: 0 15px;
}

@media (max-width: 768px) {
    .page-fishing-games-advanced-techniques .hero-content h1 {
        font-size: 2.5em;
    }

    .page-fishing-games-advanced-techniques .hero-content p {
        font-size: 1em;
    }

    .page-fishing-games-advanced-techniques .section-title {
        font-size: 2em;
    }

    .page-fishing-games-advanced-techniques h3 {
        font-size: 1.5em;
    }

    .page-fishing-games-advanced-techniques .cta-buttons .btn {
        display: block;
        margin: 20px auto;
    }

    .page-fishing-games-advanced-techniques .image-gallery {
        grid-template-columns: 1fr;
    }
}