/* style/fishing-games.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.page-fishing-games section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-fishing-games h1 {
    font-size: 3.2em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games h2 {
    font-size: 2.5em;
}

.page-fishing-games h3 {
    font-size: 1.8em;
    color: var(--text-dark);
}

.page-fishing-games p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-fishing-games a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games a:hover {
    color: var(--primary-color);
}

/* Hero Banner */
.page-fishing-games .hero-banner {
    position: relative;
    height: 500px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
    padding: 0;
}

.page-fishing-games .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fishing-games .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2;
}

.page-fishing-games .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.page-fishing-games .hero-content p {
    font-size: 1.3em;
    margin-top: 15px;
    color: var(--text-light);
}

.page-fishing-games .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-fishing-games .cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button.primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-fishing-games .cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 20px;
}

.page-fishing-games .cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Section Intro */
.page-fishing-games .section-intro {
    background-color: var(--bg-light);
    padding: 80px 0;
}

/* Why Choose Section */
.page-fishing-games .section-why-choose {
    background-color: #ffffff;
    padding: 80px 0;
}

.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-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .feature-icon {
    width: 250px; /* Enforcing minimum size, not an icon */
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games .feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Game Showcase */
.page-fishing-games .section-game-showcase {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-fishing-games .section-game-showcase h2 {
    color: var(--primary-color);
}

.page-fishing-games .section-game-showcase p {
    color: #cccccc;
}

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

.page-fishing-games .game-card {
    background-color: #333333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.page-fishing-games .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--primary-color);
}

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

.page-fishing-games .game-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games .game-card h3 a {
    color: var(--primary-color);
    font-size: 1.5em;
}

.page-fishing-games .game-card h3 a:hover {
    color: #ffffff;
}

.page-fishing-games .game-card p {
    color: #dddddd;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-fishing-games .card-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-fishing-games .card-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Strategy Section */
.page-fishing-games .section-strategy {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: left;
}

.page-fishing-games .section-strategy .container {
    max-width: 900px;
}

.page-fishing-games .section-strategy h2 {
    text-align: center;
}

.page-fishing-games .section-strategy ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 30px;
}

.page-fishing-games .section-strategy li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-fishing-games .section-strategy li strong {
    color: var(--secondary-color);
}

/* Promotions Section */
.page-fishing-games .section-promotions {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.page-fishing-games .promo-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .promo-image {
    width: 280px; /* Enforcing minimum size, not an icon */
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games .promo-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-fishing-games .promo-item h3 a {
    color: var(--secondary-color);
    font-size: 1.4em;
}

.page-fishing-games .promo-item h3 a:hover {
    color: var(--primary-color);
}

.page-fishing-games .promo-item p {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-fishing-games .promo-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-fishing-games .promo-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-fishing-games .promo-footer {
    margin-top: 40px;
    font-style: italic;
    color: #666666;
}

/* Get Started Section */
.page-fishing-games .section-get-started {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-fishing-games .section-get-started h2 {
    color: var(--primary-color);
}

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

.page-fishing-games .step-item {
    background-color: #333333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .step-icon {
    width: 200px; /* Enforcing minimum size, not an icon */
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games .step-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games .step-item h3 a {
    color: var(--primary-color);
    font-size: 1.4em;
}

.page-fishing-games .step-item h3 a:hover {
    color: #ffffff;
}

.page-fishing-games .step-item p {
    color: #dddddd;
    font-size: 1em;
}

.page-fishing-games .cta-bottom {
    margin-top: 50px;
}

/* FAQ Section */
.page-fishing-games .section-faq {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-fishing-games .faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-fishing-games .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
    background: #f5f5f5;
}

.page-fishing-games .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-dark);
}

.page-fishing-games .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-fishing-games .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.page-fishing-games .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
}

.page-fishing-games .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 5px 5px;
}

.page-fishing-games .faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
    color: var(--text-dark);
}

/* Final CTA Section */
.page-fishing-games .section-cta-final {
    background: linear-gradient(135deg, var(--secondary-color), #a00000);
    color: var(--text-light);
    padding: 80px 0;
}

.page-fishing-games .section-cta-final h2 {
    color: var(--primary-color);
    font-size: 2.8em;
}

.page-fishing-games .section-cta-final p {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games h1 {
        font-size: 2.8em;
    }
    .page-fishing-games h2 {
        font-size: 2.2em;
    }
    .page-fishing-games .hero-banner {
        height: 450px;
    }
    .page-fishing-games .features-grid,
    .page-fishing-games .game-cards-grid,
    .page-fishing-games .promo-grid,
    .page-fishing-games .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-fishing-games section {
        padding: 40px 0;
    }
    .page-fishing-games h1 {
        font-size: 2.2em;
    }
    .page-fishing-games h2 {
        font-size: 1.8em;
    }
    .page-fishing-games h3 {
        font-size: 1.5em;
    }
    .page-fishing-games p {
        font-size: 1em;
    }
    .page-fishing-games .hero-banner {
        height: 350px;
    }
    .page-fishing-games .hero-content p {
        font-size: 1em;
    }
    .page-fishing-games .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-fishing-games .cta-button.secondary {
        margin-left: 10px;
    }
    .page-fishing-games .feature-icon,
    .page-fishing-games .promo-image,
    .page-fishing-games .step-icon {
        width: 100%;
        height: auto;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-fishing-games .faq-question {
        padding: 12px 15px;
    }
    .page-fishing-games .faq-question h3 {
        font-size: 1.1em;
    }
    .page-fishing-games .faq-toggle {
        font-size: 20px;
    }
    .page-fishing-games .faq-answer {
        padding: 0 15px;
    }
    .page-fishing-games .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games h1 {
        font-size: 1.8em;
    }
    .page-fishing-games h2 {
        font-size: 1.5em;
    }
    .page-fishing-games .hero-banner {
        height: 300px;
    }
    .page-fishing-games .cta-button {
        display: block;
        margin: 20px auto 0 auto;
    }
    .page-fishing-games .cta-button.secondary {
        margin-left: auto;
        margin-top: 15px;
    }
    .page-fishing-games .features-grid,
    .page-fishing-games .game-cards-grid,
    .page-fishing-games .promo-grid,
    .page-fishing-games .steps-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games .section-strategy ul {
        margin-left: 20px;
        padding-right: 10px;
    }
    .page-fishing-games .section-strategy li {
        font-size: 1em;
    }
}