/* style/game-types-fishing-games.css */

/* General Page Styling */
.page-game-types-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark background */
    background-color: #000080; /* Dark blue background */
}

.page-game-types-fishing-games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-types-fishing-games-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-fishing-games-section:nth-child(even) {
    background-color: rgba(255, 215, 0, 0.1); /* Light gold tint for alternating sections */
}

.page-game-types-fishing-games-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-fishing-games-subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subtitles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-types-fishing-games p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-game-types-fishing-games-text-center {
    text-align: center;
}

/* Hero Section */
.page-game-types-fishing-games-hero {
    background: linear-gradient(135deg, #000080 0%, #00004d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-game-types-fishing-games-hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-game-types-fishing-games-hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFFFFF;
}

.page-game-types-fishing-games-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-game-types-fishing-games-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-types-fishing-games-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark blue text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-fishing-games-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types-fishing-games-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-game-types-fishing-games-btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Lists */
.page-game-types-fishing-games-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-game-types-fishing-games-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #E0E0E0;
}

.page-game-types-fishing-games-list li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-game-types-fishing-games-list-numbered {
    list-style: decimal;
    padding-left: 40px;
    margin: 0 auto 30px auto;
    max-width: 800px;
    text-align: left;
    color: #E0E0E0;
}

.page-game-types-fishing-games-list-numbered li {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-game-types-fishing-games-list-numbered li strong {
    color: #FFD700;
}

/* Images */
.page-game-types-fishing-games-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types-fishing-games-image-full-width {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.page-game-types-fishing-games-image-small {
    max-width: 700px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Grid */
.page-game-types-fishing-games-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    list-style: none;
    padding: 0;
}

.page-game-types-fishing-games-advantage-item {
    background-color: rgba(255, 215, 0, 0.15); /* Slightly darker gold tint */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-types-fishing-games-advantage-item:hover {
    transform: translateY(-5px);
}

.page-game-types-fishing-games-advantage-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-game-types-fishing-games-advantage-item p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-game-types-fishing-games-advantage-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* FAQ Section */
.page-game-types-fishing-games-faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-fishing-games-faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-types-fishing-games-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-types-fishing-games-faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-types-fishing-games-faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    margin-bottom: 0;
}

.page-game-types-fishing-games-faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Call to Action Section */
.page-game-types-fishing-games-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-game-types-fishing-games-final-cta {
    background-color: #FFD700;
    color: #000080;
    padding: 80px 0;
}

.page-game-types-fishing-games-final-cta .page-game-types-fishing-games-section-title {
    color: #000080;
    text-shadow: none;
}

.page-game-types-fishing-games-final-cta p {
    color: #333333;
    margin-bottom: 30px;
}

.page-game-types-fishing-games-final-cta .page-game-types-fishing-games-btn-primary {
    background-color: #000080;
    color: #FFD700;
    border: 2px solid #000080;
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.4);
}

.page-game-types-fishing-games-final-cta .page-game-types-fishing-games-btn-primary:hover {
    background-color: #000066;
    color: #FFD700;
    border-color: #000066;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 128, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-types-fishing-games-hero-title {
        font-size: 2.5em;
    }

    .page-game-types-fishing-games-hero-description {
        font-size: 1em;
    }

    .page-game-types-fishing-games-section-title {
        font-size: 2em;
    }

    .page-game-types-fishing-games-hero-actions, .page-game-types-fishing-games-cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-types-fishing-games-btn {
        width: 100%;
        max-width: 300px;
    }

    .page-game-types-fishing-games-advantages-grid {
        grid-template-columns: 1fr;
    }

    .page-game-types-fishing-games-image-small {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-game-types-fishing-games-hero-title {
        font-size: 2em;
    }

    .page-game-types-fishing-games-section-title {
        font-size: 1.8em;
    }

    .page-game-types-fishing-games-subsection-title {
        font-size: 1.5em;
    }

    .page-game-types-fishing-games p, .page-game-types-fishing-games-list li, .page-game-types-fishing-games-list-numbered li {
        font-size: 0.95em;
    }
}