/* style/fishing-games-types.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-fishing-games-types {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Light text on dark body background */
    background-color: var(--background-color);
}

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

/* Hero Section */
.page-fishing-games-types__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-fishing-games-types__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure image wrapper doesn't exceed common max width */
    position: relative;
    margin-bottom: 40px;
}

.page-fishing-games-types__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-fishing-games-types__hero-content-wrapper {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.page-fishing-games-types__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0px 0px 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games-types__description {
    font-size: 1.15rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* General Section Styling */
.page-fishing-games-types__section {
    padding: 60px 0;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games-types__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0px 0px 8px rgba(34, 199, 104, 0.3);
}

.page-fishing-games-types__sub-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-fishing-games-types__text-block {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-fishing-games-types__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

/* Card Grid */
.page-fishing-games-types__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-types__card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
}

.page-fishing-games-types__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-fishing-games-types__card-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-types__card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

/* List Styling */
.page-fishing-games-types__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-fishing-games-types__list-item {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-main-color);
}

.page-fishing-games-types__list-item::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

/* Buttons */
.page-fishing-games-types__btn-primary,
.page-fishing-games-types__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games-types__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text on green gradient */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games-types__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    opacity: 0.9;
}

.page-fishing-games-types__btn-secondary {
    background: var(--background-color);
    color: var(--primary-color); /* Green text on dark background */
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.2);
    margin-left: 15px;
}

.page-fishing-games-types__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
    background: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games-types__cta-section {
    text-align: center;
    background-color: var(--deep-green-color);
}

.page-fishing-games-types__cta-section .page-fishing-games-types__section-title {
    color: var(--gold-color);
}

.page-fishing-games-types__cta-section .page-fishing-games-types__description {
    color: var(--text-secondary-color);
    margin-bottom: 40px;
}

/* FAQ Section */
.page-fishing-games-types__faq {
    background-color: var(--background-color);
}

.page-fishing-games-types__faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-main-color);
}

.page-fishing-games-types__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

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

.page-fishing-games-types__faq-item summary:hover {
    background-color: rgba(34, 199, 104, 0.1);
}

.page-fishing-games-types__faq-qtext {
    flex-grow: 1;
    color: var(--text-main-color);
}

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

.page-fishing-games-types__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-types__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games-types__description {
        font-size: 1rem;
    }
    .page-fishing-games-types__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .page-fishing-games-types__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-fishing-games-types__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-fishing-games-types__hero-content-wrapper {
        padding: 0 15px;
    }

    .page-fishing-games-types__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-fishing-games-types__description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

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

    .page-fishing-games-types__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games-types__sub-title {
        font-size: clamp(1.3rem, 4.5vw, 1.6rem);
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-fishing-games-types__text-block {
        font-size: 0.9rem;
    }

    .page-fishing-games-types__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games-types__card {
        padding: 20px;
    }

    .page-fishing-games-types__card-title {
        font-size: 1.2rem;
    }

    .page-fishing-games-types__list-item {
        font-size: 0.9rem;
        padding-left: 20px;
    }

    /* Images responsive */
    .page-fishing-games-types img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games-types__section,
    .page-fishing-games-types__card,
    .page-fishing-games-types__container,
    .page-fishing-games-types__hero-image-wrapper,
    .page-fishing-games-types__hero-content-wrapper,
    .page-fishing-games-types__card-grid,
    .page-fishing-games-types__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    /* Buttons responsive */
    .page-fishing-games-types__btn-primary,
    .page-fishing-games-types__btn-secondary,
    .page-fishing-games-types a[class*="button"],
    .page-fishing-games-types a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0; /* Reset margin for stacked buttons */
    }
    
    .page-fishing-games-types__hero-content-wrapper .page-fishing-games-types__btn-primary {
        margin-left: 0;
    }

    .page-fishing-games-types__btn-secondary {
        margin-top: 15px; /* Add space between stacked buttons */
    }

    .page-fishing-games-types__hero-content-wrapper .page-fishing-games-types__btn-secondary {
        margin-left: 0;
    }

    .page-fishing-games-types__cta-buttons,
    .page-fishing-games-types__button-group,
    .page-fishing-games-types__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important; /* Allow buttons to wrap */
        gap: 10px; /* Space between buttons if they wrap */
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center stacked buttons */
    }

    .page-fishing-games-types__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games-types__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-types__hero-section {
        padding: 10px 0 30px 0;
    }
    .page-fishing-games-types__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-fishing-games-types__description {
        font-size: 0.85rem;
    }
    .page-fishing-games-types__btn-primary, .page-fishing-games-types__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}