/* style/fishing-games.css */

/* Global styles for the page content, ensuring light text on dark background */
.page-fishing-games {
    background-color: #08160F; /* Custom background color */
    color: #F2FFF6; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Ensure secondary text color is also visible */
.page-fishing-games__paragraph,
.page-fishing-games__list-item {
    color: #F2FFF6; /* Main text color */
}

.page-fishing-games__section-subtitle {
    color: #A7D9B8; /* Secondary text color */
}

/* Highlight elements */
.page-fishing-games__highlight {
    color: #F2C14E; /* Gold color for highlights */
    font-weight: bold;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
    box-sizing: border-box;
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken the image for text readability */
    display: block;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-fishing-games__hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: #F2FFF6; /* Main text color */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    max-width: 90%; /* Prevent title from being too wide on large screens */
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-description {
    font-size: 1.2rem;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Gold color */
    border: 2px solid #F2C14E;
}

.page-fishing-games__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Gold color */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__section-subtitle {
    font-size: 1.2rem;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 40px;
}

.page-fishing-games__content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-width: 500px;
    flex-shrink: 0;
    display: block; /* Ensure it behaves as a block element */
}

.page-fishing-games__content-image--left {
    margin-right: 20px;
}

.page-fishing-games__content-image--margin-top {
    margin-top: 40px;
}

.page-fishing-games__text-block {
    flex-grow: 1;
    color: #F2FFF6; /* Main text color */
}

.page-fishing-games__paragraph {
    margin-bottom: 15px;
    color: #F2FFF6; /* Main text color */
}

/* Grid Layouts */
.page-fishing-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__grid--two-columns {
    grid-template-columns: 1fr 1fr;
}

.page-fishing-games__grid--three-columns {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-fishing-games__card {
    background-color: #11271B; /* Card Background */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F2FFF6; /* Main text color */
    height: 100%; /* Ensure cards have equal height */
    box-sizing: border-box;
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it behaves as a block element */
}

.page-fishing-games__card-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__card-description {
    font-size: 1rem;
    color: #A7D9B8; /* Secondary text color */
    text-align: center;
    flex-grow: 1;
}

/* Guide Section */
.page-fishing-games__sub-title {
    font-size: 1.8rem;
    color: #F2C14E; /* Gold color */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-fishing-games__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Main text color */
    text-align: left;
}

.page-fishing-games__list-item {
    margin-bottom: 10px;
    color: #F2FFF6; /* Main text color */
}

/* Step Cards for Join Section */
.page-fishing-games__step-card {
    background-color: #11271B; /* Card Background */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F2FFF6; /* Main text color */
    height: 100%;
    box-sizing: border-box;
}

.page-fishing-games__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 50%;
}

.page-fishing-games__step-icon img {
    
    
    display: block;
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__step-description {
    font-size: 1rem;
    color: #A7D9B8; /* Secondary text color */
    text-align: center;
}

/* Call to action center */
.page-fishing-games__cta-center {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card Background */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Main text color */
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2C14E; /* Gold color */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #1E3A2A; /* Darker green on hover */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: #F2FFF6; /* Main text color */
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-fishing-games__faq-answer {
    padding: 0 25px 15px;
    font-size: 1rem;
    color: #A7D9B8; /* Secondary text color */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
    max-height: 500px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-fishing-games__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
    color: #A7D9B8; /* Secondary text color */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    .page-fishing-games__section-title {
        font-size: 2rem;
    }

    .page-fishing-games__sub-title {
        font-size: 1.6rem;
    }

    .page-fishing-games__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-fishing-games__grid--two-columns {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .page-fishing-games__content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__content-image--left {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .page-fishing-games__grid--reverse-on-mobile {
        flex-direction: column-reverse; /* Reverse order for strategy section on mobile */
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        min-height: 400px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-fishing-games__hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

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

    .page-fishing-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-fishing-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__section-title {
        font-size: 1.8rem;
    }

    .page-fishing-games__section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-fishing-games__grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__content-image--margin-top {
        margin-top: 20px;
    }

    /* FAQ specific mobile adjustments */
    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
        padding: 0 20px 15px;
    }

    .page-fishing-games__step-icon {
        width: 70px;
        height: 70px;
    }

    .page-fishing-games__step-icon img {
        
        
    }
}