/* style/fishing-games.css */

.page-fishing-games {
    background-color: #08160F; /* Background color */
    color: #F2FFF6; /* Text Main */
    padding-bottom: 40px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 40px; /* Small top padding, good bottom padding */
    text-align: center;
    max-width: 1390px; /* Boxed feel */
    margin: 0 auto; /* Center content */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-fishing-games__hero-content {
    max-width: 800px;
}

.page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Adjusted for better hierarchy, larger than normal h1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold */
    letter-spacing: -0.02em;
}

.page-fishing-games__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__hero-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    filter: brightness(1.1);
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #F2FFF6; /* Text Main */
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F2C14E; /* Gold */
    border-radius: 2px;
}

/* Game Grid Section */
.page-fishing-games__features-section,
.page-fishing-games__tips-section,
.page-fishing-games__why-choose-us {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fishing-games__game-grid,
.page-fishing-games__tips-grid,
.page-fishing-games__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-fishing-games__game-card,
.page-fishing-games__tip-item,
.page-fishing-games__advantage-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border color */
    display: flex;
    flex-direction: column;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__tip-item:hover,
.page-fishing-games__advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-card-image,
.page-fishing-games__tip-image,
.page-fishing-games__advantage-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency in cards, adjust as needed */
    object-fit: cover;
    display: block;
}

/* Ensure all images meet min size requirement */
.page-fishing-games__game-card-image,
.page-fishing-games__tip-image,
.page-fishing-games__advantage-image {
    min-width: 200px; /* Enforce minimum size if CSS override makes it smaller */
    min-height: 200px; /* Enforce minimum size */
}


.page-fishing-games__game-card-title,
.page-fishing-games__tip-title,
.page-fishing-games__advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.page-fishing-games__game-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-card-title a:hover {
    color: #57E38D; /* Glow */
}

.page-fishing-games__game-card-description,
.page-fishing-games__tip-description,
.page-fishing-games__advantage-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1; /* Make description take available space */
}

.page-fishing-games__game-card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 0;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-fishing-games__game-card-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Tips Section */
.page-fishing-games__cta-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #F2FFF6;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    filter: brightness(1.1);
}

/* Why Choose Us Section */
.page-fishing-games__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust minmax for advantage items */
    text-align: center;
}

.page-fishing-games__advantage-item {
    padding-bottom: 20px; /* Add padding for consistency */
}

.page-fishing-games__advantage-image {
    width: 250px; /* Display size */
    height: 250px; /* Display size */
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px;
}

.page-fishing-games__advantage-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-fishing-games__advantage-description {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px;
}


/* Media Queries for Responsiveness */
@media (max-width: 849px) {
    .page-fishing-games__hero-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .page-fishing-games__hero-description {
        font-size: 1rem;
    }

    .page-fishing-games__hero-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .page-fishing-games__game-grid,
    .page-fishing-games__tips-grid,
    .page-fishing-games__advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-fishing-games__game-card-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__advantage-title {
        font-size: 1.15rem;
    }

    .page-fishing-games__game-card-description,
    .page-fishing-games__tip-description,
    .page-fishing-games__advantage-description {
        font-size: 0.9rem;
    }

    .page-fishing-games__cta-text {
        font-size: 1.1rem;
    }

    .page-fishing-games__cta-button {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__hero-section {
        padding: 10px 15px 30px;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }

    .page-fishing-games__hero-description {
        font-size: 0.9rem;
    }

    .page-fishing-games__hero-cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-fishing-games__game-grid,
    .page-fishing-games__tips-grid,
    .page-fishing-games__advantages-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 15px;
    }

    .page-fishing-games__game-card-image,
    .page-fishing-games__tip-image,
    .page-fishing-games__advantage-image {
        height: auto; /* Allow height to adjust for single column */
        max-width: 100%;
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }

    .page-fishing-games__game-card-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__advantage-title {
        font-size: 1.1rem;
    }

    .page-fishing-games__game-card-description,
    .page-fishing-games__tip-description,
    .page-fishing-games__advantage-description {
        font-size: 0.85rem;
    }

    .page-fishing-games__cta-bottom {
        padding: 20px;
    }

    .page-fishing-games__cta-button {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    /* Mobile content area images constraint */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
    .page-fishing-games__game-card,
    .page-fishing-games__tip-item,
    .page-fishing-games__advantage-item {
        margin: 0 10px;
    }
    .page-fishing-games__features-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__why-choose-us {
        padding: 0 10px;
    }
}