/* style/fishing-games-skill-guide.css */

/* Base styles for the page content */
.page-fishing-games-skill-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default to light text for dark background */
    background-color: var(--background-color, #08160F); /* Page background */
}

/* Section styling */
.page-fishing-games-skill-guide__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-fishing-games-skill-guide__section:nth-of-type(even) {
    background-color: var(--card-bg, #11271B); /* Alternate background for sections */
}

/* Hero Section */
.page-fishing-games-skill-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small padding-top as per instruction */
    background-color: var(--background-color, #08160F);
}

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

.page-fishing-games-skill-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-skill-guide__hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-main, #F2FFF6);
    z-index: 1; /* Ensure text is above any potential background effects */
}

.page-fishing-games-skill-guide__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Use clamp for H1 */
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px var(--glow, #57E38D);
}

.page-fishing-games-skill-guide__intro-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

/* Section titles */
.page-fishing-games-skill-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gold, #F2C14E);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

/* Paragraphs and general text */
.page-fishing-games-skill-guide p {
    margin-bottom: 15px;
    color: var(--text-main, #F2FFF6);
}

.page-fishing-games-skill-guide__image-block {
    text-align: center;
    margin: 40px 0;
    background-color: var(--card-bg, #11271B);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border, #2E7A4E);
}

.page-fishing-games-skill-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-skill-guide__image-caption {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-secondary, #A7D9B8);
}

/* CTA Buttons */
.page-fishing-games-skill-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-fishing-games-skill-guide__cta-buttons--bottom {
    margin-top: 60px;
}

.page-fishing-games-skill-guide__btn-primary,
.page-fishing-games-skill-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure button responsiveness */
    text-align: center;
}

.page-fishing-games-skill-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-skill-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-fishing-games-skill-guide__btn-secondary {
    background-color: transparent;
    color: var(--glow, #57E38D);
    border: 2px solid var(--glow, #57E38D);
    box-shadow: 0 3px 10px rgba(87, 227, 141, 0.2);
}

.page-fishing-games-skill-guide__btn-secondary:hover {
    background-color: var(--glow, #57E38D);
    color: #08160F; /* Dark text on light background */
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
    transform: translateY(-2px);
}

/* FAQ Section */
.page-fishing-games-skill-guide__faq {
    padding-bottom: 80px;
}

.page-fishing-games-skill-guide__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-fishing-games-skill-guide__faq-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border, #2E7A4E);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main, #F2FFF6);
}

.page-fishing-games-skill-guide__faq-item summary {
    list-style: none; /* Remove default marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-main, #F2FFF6);
    background-color: var(--deep-green, #0A4B2C);
    transition: background-color 0.3s ease;
}

.page-fishing-games-skill-guide__faq-item summary:hover {
    background-color: var(--border, #2E7A4E);
}

.page-fishing-games-skill-guide__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-fishing-games-skill-guide__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games-skill-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold, #F2C14E);
}

.page-fishing-games-skill-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    border-top: 1px solid var(--divider, #1E3A2A);
}

/* Conclusion section specific styling */
.page-fishing-games-skill-guide__conclusion {
    text-align: center;
    background-color: var(--background-color, #08160F);
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games-skill-guide__section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

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

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

    .page-fishing-games-skill-guide__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-fishing-games-skill-guide__intro-text {
        font-size: 1.1rem;
    }

    .page-fishing-games-skill-guide__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-fishing-games-skill-guide__section,
    .page-fishing-games-skill-guide__hero-content,
    .page-fishing-games-skill-guide__faq-list,
    .page-fishing-games-skill-guide__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Images responsive */
    .page-fishing-games-skill-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Buttons responsive */
    .page-fishing-games-skill-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games-skill-guide__btn-primary,
    .page-fishing-games-skill-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-fishing-games-skill-guide__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-fishing-games-skill-guide__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}