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

/* Variables */
:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-color-light: #F8F8F8;
    --text-color-dark: #333333;
    --background-light: #F4F7FC;
    --background-dark: #071C40;
    --border-color: #DDE0E5;
}

/* Base Styles for the Page */
.page-game-introduction-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

.page-game-introduction-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-introduction-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-introduction-fishing-games__section:nth-of-type(even) {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__section-title,
.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__text-block,
.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__feature-title,
.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__faq-question,
.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__faq-answer {
    color: var(--text-color-light);
}

.page-game-introduction-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-introduction-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-game-introduction-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-dark);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__text-block {
    color: var(--text-color-light);
}

.page-game-introduction-fishing-games__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.05em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-game-introduction-fishing-games__button.primary-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-game-introduction-fishing-games__button.primary-button:hover {
    background-color: #CBA204; /* Darker shade of secondary color */
    transform: translateY(-2px);
}

.page-game-introduction-fishing-games__button.secondary-button {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
}

.page-game-introduction-fishing-games__button.secondary-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-game-introduction-fishing-games__button.tertiary-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.page-game-introduction-fishing-games__button.tertiary-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-game-introduction-fishing-games__button.large-button {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-game-introduction-fishing-games__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-introduction-fishing-games__link:hover {
    text-decoration: underline;
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__link {
    color: var(--secondary-color);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__link:hover {
    color: #CBA204;
}

.highlight-text {
    color: var(--secondary-color);
}

.text-center {
    text-align: center;
}

.centered-button {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-game-introduction-fishing-games__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    color: var(--text-color-light);
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 70vh;
}

.page-game-introduction-fishing-games__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-game-introduction-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
}

.page-game-introduction-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #D0D0D0;
}

.page-game-introduction-fishing-games__hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-game-introduction-fishing-games__hero-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-game-introduction-fishing-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__feature-item {
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-introduction-fishing-games__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(227, 181, 5, 0.5));
}

.page-game-introduction-fishing-games__feature-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__feature-title {
    color: var(--secondary-color);
}

.page-game-introduction-fishing-games__feature-item p {
    color: var(--text-color-dark);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__feature-item p {
    color: #E0E0E0;
}

/* Content Flex Layout */
.page-game-introduction-fishing-games__content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-game-introduction-fishing-games__content-flex.reverse-flex {
    flex-direction: row-reverse;
}

.page-game-introduction-fishing-games__text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-game-introduction-fishing-games__image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-game-introduction-fishing-games__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-introduction-fishing-games__step-list,
.page-game-introduction-fishing-games__strategy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.page-game-introduction-fishing-games__step-list li,
.page-game-introduction-fishing-games__strategy-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: var(--text-color-dark);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__step-list li,
.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__strategy-list li {
    color: var(--text-color-light);
}

.page-game-introduction-fishing-games__step-list li::before,
.page-game-introduction-fishing-games__strategy-list li::before {
    content: '•'; /* Or a custom icon */
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: -2px;
}

.page-game-introduction-fishing-games__step-list li strong {
    color: var(--primary-color);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__step-list li strong {
    color: var(--secondary-color);
}

/* Promotions Section */
.page-game-introduction-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-fishing-games__promo-card {
    background-color: var(--text-color-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-introduction-fishing-games__promo-card:hover {
    transform: translateY(-5px);
}

.page-game-introduction-fishing-games__promo-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-introduction-fishing-games__promo-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-introduction-fishing-games__promo-card p {
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

/* FAQ Section */
.page-game-introduction-fishing-games__faq {
    text-align: left;
}

.page-game-introduction-fishing-games__faq-item {
    background-color: var(--text-color-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__faq-item {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-fishing-games__faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__faq-question {
    color: var(--secondary-color);
}

.page-game-introduction-fishing-games__faq-answer {
    font-size: 1em;
    color: var(--text-color-dark);
    margin-bottom: 0;
}

.page-game-introduction-fishing-games__section:nth-of-type(even) .page-game-introduction-fishing-games__faq-answer {
    color: #E0E0E0;
}

/* Call to Action Section */
.page-game-introduction-fishing-games__cta {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 80px 20px;
}

.page-game-introduction-fishing-games__cta .page-game-introduction-fishing-games__section-title {
    color: var(--text-color-light);
}

.page-game-introduction-fishing-games__cta .page-game-introduction-fishing-games__section-title::after {
    background-color: var(--secondary-color);
}

.page-game-introduction-fishing-games__cta .page-game-introduction-fishing-games__text-block {
    color: #D0D0D0;
}

.page-game-introduction-fishing-games__cta .page-game-introduction-fishing-games__link {
    color: var(--secondary-color);
}

.page-game-introduction-fishing-games__cta .page-game-introduction-fishing-games__link:hover {
    color: #CBA204;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-introduction-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-game-introduction-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-game-introduction-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-introduction-fishing-games__hero-content,
    .page-game-introduction-fishing-games__hero-image-container {
        max-width: 100%;
    }
    .page-game-introduction-fishing-games__content-flex {
        flex-direction: column;
    }
    .page-game-introduction-fishing-games__content-flex.reverse-flex {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .page-game-introduction-fishing-games__hero {
        padding: 60px 20px;
    }
    .page-game-introduction-fishing-games__hero-title {
        font-size: 2.2em;
        text-align: center;
    }
    .page-game-introduction-fishing-games__hero-description {
        text-align: center;
    }
    .page-game-introduction-fishing-games__hero-actions {
        justify-content: center;
    }
    .page-game-introduction-fishing-games__section {
        padding: 40px 0;
    }
    .page-game-introduction-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-introduction-fishing-games__text-block {
        font-size: 1em;
    }
    .page-game-introduction-fishing-games__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-game-introduction-fishing-games__button.secondary-button {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-game-introduction-fishing-games__promo-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .page-game-introduction-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-introduction-fishing-games__hero-description {
        font-size: 0.95em;
    }
    .page-game-introduction-fishing-games__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-game-introduction-fishing-games__button.secondary-button {
        margin-top: 0;
    }
    .page-game-introduction-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-game-introduction-fishing-games__feature-item,
    .page-game-introduction-fishing-games__promo-card {
        padding: 20px;
    }
    .page-game-introduction-fishing-games__faq-question {
        font-size: 1.1em;
    }
}