/* style/fishing-games.css */

/* Base Styles for the Fishing Games Page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default dark text for light body background */
    line-height: 1.6;
    background-color: #f4f4f4; /* Inherited from body, explicitly set for clarity */
}

/* Helper classes for background/text contrast */
.page-fishing-games__dark-bg {
    background-color: #4A148C; /* Main brand color */
    color: #ffffff;
}

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: #333333;
}

/* Section Styling */
.page-fishing-games__section {
    padding: 60px 0;
    margin-bottom: 20px; /* Spacing between sections */
}

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

.page-fishing-games__heading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #4A148C; /* Main brand color for headings */
}

.page-fishing-games__heading--white {
    color: #ffffff;
}

.page-fishing-games__paragraph {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__paragraph--white {
    color: #f0f0f0;
}

/* --- HERO Section --- */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, #4A148C, #8A2BE2); /* Gradient from main brand color */
    overflow: hidden; /* Prevent image overflow */
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure container takes full width */
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: #ffffff;
}

.page-fishing-games__hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFD700; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #FFD700; /* Accent color for CTA */
    color: #4A148C; /* Main brand color for text on accent background */
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    background: #e6c200; /* Slightly darker accent on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- Module 1: Intro Section --- */
.page-fishing-games__intro-section {
    background-color: #f9f9f9;
}

.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: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__feature-title {
    font-size: 22px;
    color: #4A148C;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__feature-text {
    font-size: 16px;
    color: #555555;
}

/* --- Module 2: Quick Links Section --- */
.page-fishing-games__quick-links-section {
    background: #4A148C; /* Main brand color */
    padding: 80px 0;
}

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

.page-fishing-games__link-button {
    display: block;
    text-align: center;
    padding: 15px 25px;
    background: #FFD700;
    color: #4A148C;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__link-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* --- Module 3: Game Showcase Section --- */
.page-fishing-games__game-showcase-section {
    background-color: #ffffff;
}

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

.page-fishing-games__game-card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__game-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
    font-size: 20px;
    color: #4A148C;
    margin: 15px 15px 10px;
    font-weight: 700;
}

.page-fishing-games__game-card .page-fishing-games__card-text {
    font-size: 15px;
    color: #666666;
    padding: 0 15px 15px;
    text-align: left;
}

.page-fishing-games__game-card .page-fishing-games__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: #FFD700;
    color: #4A148C;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    margin: 0 15px 15px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games__game-card .page-fishing-games__card-button:hover {
    background: #e6c200;
}

/* --- Module 4: Promotions Section --- */
.page-fishing-games__promotions-section {
    background: #4A148C;
    padding: 80px 0;
}

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

.page-fishing-games__promo-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}