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

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

.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 section:nth-of-type(even) {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games section:nth-of-type(even) h1, 
.page-fishing-games section:nth-of-type(even) h2, 
.page-fishing-games section:nth-of-type(even) h3 {
    color: var(--primary-color);
}

.page-fishing-games h1, .page-fishing-games h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: bold;
}

.page-fishing-games h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8em;
}

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

/* Hero Banner */
.page-fishing-games .hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background-color: var(--bg-dark);
}

.page-fishing-games .hero-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.page-fishing-games .hero-image {
    width: 100%;
    height: 550px; /* Adjust height as needed */
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.page-fishing-games .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    max-width: 800px;
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.page-fishing-games .hero-content h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-fishing-games .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button:hover {
    background-color: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Why Choose */
.page-fishing-games .section-why-choose {
    background-color: var(--bg-light);
}

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

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

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

.page-fishing-games .feature-icon {
    width: 250px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games .feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
}

.page-fishing-games .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
}

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

.page-fishing-games .cta-button-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button-secondary:hover {
    background-color: #B22222;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Guide */
.page-fishing-games .section-guide {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

.page-fishing-games .step-item {
    background-color: #333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games .step-image {
    width: 250px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

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

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

.page-fishing-games .step-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.page-fishing-games .step-button:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
}

/* Section Tips */
.page-fishing-games .section-tips {
    background-color: var(--bg-light);
}

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

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

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

.page-fishing-games .tip-image {
    width: 250px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games .tip-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
}

.page-fishing-games .tip-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Section Promotions */
.page-fishing-games .section-promotions {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

.page-fishing-games .promo-item {
    background-color: #333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-fishing-games .promo-image {
    width: 250px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games .promo-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
}

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

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

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

.page-fishing-games .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.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);
}

.page-fishing-games .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #f9f9f9;
    padding: 0 20px;
    color: var(--text-dark);
}

.page-fishing-games .faq-item.active .faq-answer {
    max-height: 300px; /* Sufficient height for content */
    padding: 15px 20px;
}

.page-fishing-games .faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Section Contact */
.page-fishing-games .section-contact {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

.page-fishing-games .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-fishing-games .contact-info a:hover {
    color: #FFC107;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games .hero-content h1 {
        font-size: 2.8em;
    }
    .page-fishing-games .hero-content p {
        font-size: 1.1em;
    }
    .page-fishing-games h1, .page-fishing-games h2 {
        font-size: 2em;
    }
    .page-fishing-games h3 {
        font-size: 1.5em;
    }
    .page-fishing-games .features-grid, .page-fishing-games .step-by-step, .page-fishing-games .tips-grid, .page-fishing-games .promo-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-fishing-games .hero-image {
        height: 400px;
    }
    .page-fishing-games .hero-content h1 {
        font-size: 2.2em;
    }
    .page-fishing-games .hero-content p {
        font-size: 1em;
    }
    .page-fishing-games .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-fishing-games section {
        padding: 40px 0;
    }
    .page-fishing-games h1, .page-fishing-games h2 {
        font-size: 1.8em;
    }
    .page-fishing-games h3 {
        font-size: 1.3em;
    }
    .page-fishing-games .feature-icon, .page-fishing-games .step-image, .page-fishing-games .tip-image, .page-fishing-games .promo-image {
        width: 200px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .page-fishing-games .hero-image {
        height: 300px;
    }
    .page-fishing-games .hero-content h1 {
        font-size: 1.8em;
    }
    .page-fishing-games .hero-content p {
        font-size: 0.9em;
    }
    .page-fishing-games .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-fishing-games .container {
        padding: 0 15px;
    }
    .page-fishing-games h1, .page-fishing-games h2 {
        font-size: 1.5em;
    }
    .page-fishing-games h3 {
        font-size: 1.2em;
    }
    .page-fishing-games .features-grid, .page-fishing-games .step-by-step, .page-fishing-games .tips-grid, .page-fishing-games .promo-list {
        grid-template-columns: 1fr;
    }
    .page-fishing-games .faq-question {
      flex-direction: column;
      align-items: flex-start;
    }
    .page-fishing-games .faq-toggle {
      align-self: flex-end;
      margin-top: -30px;
    }
}