/* style/fishing-games.css */

.page-fishing-games {
    padding-top: 10px; /* Small top padding for the first section, body handles main header offset */
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
}

.page-fishing-games__container {
    max-width: 1280px; /* Adjusted max-width for content */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #F4F7FB; /* Match main background or use a subtle gradient */
    display: flex; /* For upper image, lower text */
    flex-direction: column; /* For upper image, lower text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp or responsive scaling */
}

.page-fishing-games__hero-description {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-fishing-games__hero-cta,
.page-fishing-games__main-cta,
.page-fishing-games__game-cta {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games__hero-cta:hover,
.page-fishing-games__main-cta:hover,
.page-fishing-games__game-cta:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: 2.25rem; /* 36px */
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-fishing-games__paragraph {
    font-size: 1rem; /* 16px */
    line-height: 1.7;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    margin-bottom: 40px;
    background-color: #F4F7FB; /* Background */
}

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

.page-fishing-games__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__feature-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-title {
    font-size: 1.5rem; /* 24px */
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

/* How to Play Section */
.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-fishing-games__step-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-fishing-games__step-title {
    font-size: 1.5rem; /* 24px */
    font-weight: bold;
    color: #2F6BFF; /* Primary color for steps */
    margin-bottom: 15px;
}

.page-fishing-games__step-description {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

/* Popular Games Section */
.page-fishing-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__game-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 220px; /* Fixed height for game cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-title {
    font-size: 1.375rem; /* 22px */
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
}

.page-fishing-games__game-description {
    font-size: 0.9375rem; /* 15px */
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #D6E2FF; /* Border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-fishing-games__faq-question {
    font-size: 1.25rem; /* 20px */
    font-weight: bold;
    color: #2F6BFF; /* Primary color for questions */
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

.page-fishing-games__faq-answer a {
    color: #2F6BFF; /* Link color */
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: #6FA3FF; /* Link hover color */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2rem; /* 32px */
    }
    .page-fishing-games__hero-title {
        font-size: clamp(2rem, 5vw, 3rem); /* Responsive H1 */
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        padding-top: 5px;
    }
    .page-fishing-games__container {
        padding: 15px;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem); /* Smaller H1 for mobile */
    }
    .page-fishing-games__hero-description {
        font-size: 1rem; /* 16px */
    }
    .page-fishing-games__hero-cta,
    .page-fishing-games__main-cta,
    .page-fishing-games__game-cta {
        padding: 12px 25px;
        font-size: 0.9375rem; /* 15px */
    }
    .page-fishing-games__section-title {
        font-size: 1.75rem; /* 28px */
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__step-card,
    .page-fishing-games__game-card,
    .page-fishing-games__faq-item {
        padding: 20px;
    }
    .page-fishing-games__feature-image,
    .page-fishing-games__game-image {
        height: auto; /* Allow auto height for mobile images */
        max-width: 100%; /* Ensure images don't overflow */
        min-width: 200px;
        min-height: 200px;
    }
    /* Enforce min-width for all images in content area */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-fishing-games__section-title {
        font-size: 1.5rem; /* 24px */
    }
}