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

/* Variables for colors */
:root {
    --page-game-types-fishing-games-deep-dive-primary-color: #1A2E4E; /* Dark Blue */
    --page-game-types-fishing-games-deep-dive-accent-color: #FFD700; /* Gold */
    --page-game-types-fishing-games-deep-dive-text-light: #FFFFFF;
    --page-game-types-fishing-games-deep-dive-text-dark: #1A2E4E; /* Using primary color for dark text */
    --page-game-types-fishing-games-deep-dive-text-on-gold: #000000; /* Black for max contrast on gold */
}

.page-game-types-fishing-games-deep-dive {
    font-family: 'Arial', sans-serif; /* A common, readable font */
    line-height: 1.6;
    color: var(--page-game-types-fishing-games-deep-dive-text-dark); /* Default text color */
    background-color: #f8f8f8; /* Light background for general content */
}

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

/* Hero Section */
.page-game-types-fishing-games-deep-dive__hero {
    background: linear-gradient(135deg, var(--page-game-types-fishing-games-deep-dive-primary-color) 0%, #3a4e6e 100%); /* Gradient with primary color */
    color: var(--page-game-types-fishing-games-deep-dive-text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-fishing-games-deep-dive__hero-content {
    max-width: 800px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.page-game-types-fishing-games-deep-dive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-game-types-fishing-games-deep-dive-accent-color); /* Gold title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-fishing-games-deep-dive__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-game-types-fishing-games-deep-dive-text-light);
}

.page-game-types-fishing-games-deep-dive__hero-button {
    display: inline-block;
    background-color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-dark); /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games-deep-dive__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-game-types-fishing-games-deep-dive__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-game-types-fishing-games-deep-dive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make it a subtle background image */
}

/* General Section Styling */
.page-game-types-fishing-games-deep-dive__section {
    padding: 60px 0;
    background-color: var(--page-game-types-fishing-games-deep-dive-text-light); /* Default light background for sections */
}

.page-game-types-fishing-games-deep-dive__section:nth-of-type(even) {
    background-color: #f0f0f0; /* Slightly different background for alternating sections */
}

.page-game-types-fishing-games-deep-dive__section-title {
    font-size: 2.5em;
    color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-types-fishing-games-deep-dive__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    border-radius: 2px;
}

/* About Section */
.page-game-types-fishing-games-deep-dive__about p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-types-fishing-games-deep-dive__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-game-types-fishing-games-deep-dive__feature-item {
    background-color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-game-types-fishing-games-deep-dive__feature-title {
    font-size: 1.5em;
    color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    margin-bottom: 15px;
}

/* Game Types Section */
.page-game-types-fishing-games-deep-dive__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-game-types-fishing-games-deep-dive__game-item {
    background-color: var(--page-game-types-fishing-games-deep-dive-text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--page-game-types-fishing-games-deep-dive-accent-color);
}

.page-game-types-fishing-games-deep-dive__game-title {
    font-size: 1.4em;
    color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    margin-bottom: 10px;
}

.page-game-types-fishing-games-deep-dive__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Guide Section */
.page-game-types-fishing-games-deep-dive__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-game-types-fishing-games-deep-dive__steps li {
    background-color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-light);
    margin-bottom: 20px;
    padding: 25px 25px 25px 70px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-games-deep-dive__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-on-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-game-types-fishing-games-deep-dive__step-title {
    color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Strategy Section */
.page-game-types-fishing-games-deep-dive__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-types-fishing-games-deep-dive__strategy-item {
    background-color: var(--page-game-types-fishing-games-deep-dive-text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--page-game-types-fishing-games-deep-dive-primary-color);
}

.page-game-types-fishing-games-deep-dive__strategy-title {
    font-size: 1.4em;
    color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    margin-bottom: 10px;
}

/* Weapons Section */
.page-game-types-fishing-games-deep-dive__weapon-list {
    list-style: none;
    padding: 0;
}

.page-game-types-fishing-games-deep-dive__weapon-list li {
    background-color: #f0f0f0;
    border-left: 5px solid var(--page-game-types-fishing-games-deep-dive-accent-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-game-types-fishing-games-deep-dive__weapon-title {
    font-size: 1.3em;
    color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    margin-bottom: 8px;
}

/* Tips Section */
.page-game-types-fishing-games-deep-dive__tips-list {
    list-style: none;
    padding: 0;
}

.page-game-types-fishing-games-deep-dive__tips-list li {
    background-color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-games-deep-dive__tip-title {
    font-size: 1.3em;
    color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    margin-bottom: 8px;
}

/* Responsible Gaming Section */
.page-game-types-fishing-games-deep-dive__responsible-list {
    list-style: none;
    padding: 0;
}

.page-game-types-fishing-games-deep-dive__responsible-list li {
    background-color: var(--page-game-types-fishing-games-deep-dive-text-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.page-game-types-fishing-games-deep-dive__responsible-title {
    font-size: 1.3em;
    color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    margin-bottom: 8px;
}

.page-game-types-fishing-games-deep-dive__image-small {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-game-types-fishing-games-deep-dive__faq-item {
    background-color: var(--page-game-types-fishing-games-deep-dive-text-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-types-fishing-games-deep-dive__faq-question {
    font-size: 1.3em;
    color: var(--page-game-types-fishing-games-deep-dive-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-game-types-fishing-games-deep-dive__faq-answer {
    font-size: 1em;
    color: #555;
    display: none; /* Hidden by default, toggled by JS */
}

/* Call to Action Section */
.page-game-types-fishing-games-deep-dive__cta {
    background: var(--page-game-types-fishing-games-deep-dive-primary-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-game-types-fishing-games-deep-dive__cta-content {
    max-width: 800px;
}

.page-game-types-fishing-games-deep-dive__cta-title {
    font-size: 2.8em;
    color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    margin-bottom: 20px;
}

.page-game-types-fishing-games-deep-dive__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.page-game-types-fishing-games-deep-dive__cta-button {
    display: inline-block;
    background-color: var(--page-game-types-fishing-games-deep-dive-accent-color);
    color: var(--page-game-types-fishing-games-deep-dive-text-dark); /* Dark text on gold button */
    padding: 18px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games-deep-dive__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-fishing-games-deep-dive__hero-title {
        font-size: 2.8em;
    }
    .page-game-types-fishing-games-deep-dive__section-title {
        font-size: 2em;
    }
    .page-game-types-fishing-games-deep-dive__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-game-types-fishing-games-deep-dive__hero {
        padding: 60px 0;
    }
    .page-game-types-fishing-games-deep-dive__hero-title {
        font-size: 2.2em;
    }
    .page-game-types-fishing-games-deep-dive__hero-description {
        font-size: 1em;
    }
    .page-game-types-fishing-games-deep-dive__section {
        padding: 40px 0;
    }
    .page-game-types-fishing-games-deep-dive__section-title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games-deep-dive__cta-title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games-deep-dive__features,
    .page-game-types-fishing-games-deep-dive__game-list,
    .page-game-types-fishing-games-deep-dive__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-game-types-fishing-games-deep-dive__steps li {
        padding: 20px 20px 20px 60px;
    }
    .page-game-types-fishing-games-deep-dive__steps li::before {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-types-fishing-games-deep-dive__hero {
        padding: 40px 0;
    }
    .page-game-types-fishing-games-deep-dive__hero-title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games-deep-dive__hero-description {
        font-size: 0.9em;
    }
    .page-game-types-fishing-games-deep-dive__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-types-fishing-games-deep-dive__section-title {
        font-size: 1.5em;
    }
    .page-game-types-fishing-games-deep-dive__cta-title {
        font-size: 1.6em;
    }
    .page-game-types-fishing-games-deep-dive__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}