/* style/fishing-games.css */

/* --- General Page Styles --- */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8; /* Light background for the main content area */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-fishing-games__section-title {
    font-size: 38px;
    color: #003366; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games__section-description {
    font-size: 18px;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-fishing-games__sub-title {
    font-size: 24px;
    color: #003366;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* --- CTA Button Styles --- */
.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Auxiliary brand color */
    color: #003366; /* Dark text for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Ensure text wraps */
}

.page-fishing-games__cta-button:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--secondary {
    background: #003366; /* Main brand color */
    color: #FFD700; /* Auxiliary brand color for text */
    border: 2px solid #FFD700;
}

.page-fishing-games__cta-button--secondary:hover {
    background: #002244; /* Slightly darker blue on hover */
    border-color: #e6c200;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* --- Image Styles --- */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block; /* Ensures proper spacing and sizing */
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Ensure no filter is applied */
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #003366; /* Dark blue background for hero */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    z-index: 2;
    margin-bottom: 40px;
}

.page-fishing-games__main-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #FFD700; /* Gold for main title */
}

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

.page-fishing-games__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Limit image width in hero */
    margin-top: 30px;
    z-index: 1;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-fishing-games__advantage-item {
    background-color: #fefefe;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-fishing-games__advantage-icon {
    width: 100%; /* Ensure icon is responsive */
    max-width: 250px; /* Max width for advantage image */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games__advantage-title {
    font-size: 22px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-fishing-games__advantage-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

/* --- Odds Explanation Section --- */
.page-fishing-games__odds-explanation-section {
    padding: 80px 0;
    background-color: #003366; /* Dark section background */
    color: #ffffff; /* White text for contrast */
}

.page-fishing-games__odds-explanation-section .page-fishing-games__section-title,
.page-fishing-games__odds-explanation-section .page-fishing-games__section-description {
    color: #FFD700; /* Gold for titles/descriptions in dark section */
}

.page-fishing-games__odds-explanation-section .page-fishing-games__sub-title {
    color: #FFD700; /* Gold for sub-titles in dark section */
}

.page-fishing-games__odds-explanation-section p {
    color: #f0f0f0;
}

.page-fishing-games__content-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-top: 40px;
}

.page-fishing-games__text-block {
    flex: 1;
}

.page-fishing-games__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__explanation-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Game Types Section --- */
.page-fishing-games__game-types-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.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: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for card images */
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.page-fishing-games__game-card-title {
    font-size: 24px;
    color: #003366;
    font-weight: 700;
    padding: 20px 20px 10px 20px;
    margin: 0;
}

.page-fishing-games__game-card-description {
    font-size: 15px;
    color: #666666;
    padding: 0 20px 20px 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-fishing-games__game-card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px 20px;
    background: #FFD700;
    color: #003366;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__game-card-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* --- Strategy Section --- */
.page-fishing-games__strategy-section {
    padding: 80px 0;
    background-color: #003366; /* Dark section background */
    color: #ffffff; /* White text for contrast */
}

.page-fishing-games__strategy-section .page-fishing-games__section-title,
.page-fishing-games__strategy-section .page-fishing-games__section-description {
    color: #FFD700; /* Gold for titles/descriptions in dark section */
}

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

.page-fishing-games__strategy-item {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games__strategy-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}