/* style/fishing-games-deep-sea-adventure.css */

/* Base styles for the page content, considering dark body background */
.page-fishing-games-deep-sea-adventure {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Inherit from body or shared.css */
    padding-bottom: 60px; /* Space for footer */
}

/* Hero Section */
.page-fishing-games-deep-sea-adventure__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    /* Fixed header padding */
    padding-top: 120px; /* Desktop: Adjust based on actual header height */
}

.page-fishing-games-deep-sea-adventure__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-fishing-games-deep-sea-adventure__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-fishing-games-deep-sea-adventure__hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 1;
}

.page-fishing-games-deep-sea-adventure__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #E44D26; /* Brand color for title, good contrast on dark overlay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-deep-sea-adventure__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* CTA Buttons */
.page-fishing-games-deep-sea-adventure__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games-deep-sea-adventure__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-fishing-games-deep-sea-adventure__btn-primary {
    background-color: #E44D26; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #E44D26;
}

.page-fishing-games-deep-sea-adventure__btn-primary:hover {
    background-color: #ff6a42;
    transform: translateY(-2px);
}

.page-fishing-games-deep-sea-adventure__btn-secondary {
    background-color: transparent;
    color: #ffffff; /* Changed to white for better contrast on dark background */
    border: 2px solid #E44D26;
}

.page-fishing-games-deep-sea-adventure__btn-secondary:hover {
    background-color: #E44D26;
    color: #ffffff;
    transform: translateY(-2px);
}

/* General Section Styles */
.page-fishing-games-deep-sea-adventure__section {
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.3); /* Slightly transparent dark background for sections */
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-deep-sea-adventure__section:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.4); /* Slightly different shade for visual separation */
}

.page-fishing-games-deep-sea-adventure__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-fishing-games-deep-sea-adventure__section-title {
    font-size: 2.5em;
    color: #E44D26; /* Brand primary color */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-deep-sea-adventure__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #cccccc;
}

/* Feature Grid (Why Choose) */
.page-fishing-games-deep-sea-adventure__feature-grid,
.page-fishing-games-deep-sea-adventure__step-grid,
.page-fishing-games-deep-sea-adventure__strategy-card-grid,
.page-fishing-games-deep-sea-adventure__promo-list,
.page-fishing-games-deep-sea-adventure__support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games-deep-sea-adventure__feature-item,
.page-fishing-games-deep-sea-adventure__step-item,
.page-fishing-games-deep-sea-adventure__strategy-card,
.page-fishing-games-deep-sea-adventure__promo-item,
.page-fishing-games-deep-sea-adventure__support-item {
    background-color: rgba(255, 255, 255, 0.1); /* Light transparent background for cards */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-deep-sea-adventure__feature-item:hover,
.page-fishing-games-deep-sea-adventure__step-item:hover,
.page-fishing-games-deep-sea-adventure__strategy-card:hover,
.page-fishing-games-deep-sea-adventure__promo-item:hover,
.page-fishing-games-deep-sea-adventure__support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-deep-sea-adventure__feature-image,
.page-fishing-games-deep-sea-adventure__step-image,
.page-fishing-games-deep-sea-adventure__strategy-image,
.page-fishing-games-deep-sea-adventure__promo-image,
.page-fishing-games-deep-sea-adventure__support-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Enforce min height for content images */
    width: 100%; /* Ensure images fill container width */
}

.page-fishing-games-deep-sea-adventure__feature-title,
.page-fishing-games-deep-sea-adventure__step-title,
.page-fishing-games-deep-sea-adventure__strategy-title,
.page-fishing-games-deep-sea-adventure__promo-title,
.page-fishing-games-deep-sea-adventure__support-title {
    font-size: 1.6em;
    color: #E44D26;
    margin-bottom: 15px;
}

.page-fishing-games-deep-sea-adventure__feature-text,
.page-fishing-games-deep-sea-adventure__step-text,
.page-fishing-games-deep-sea-adventure__strategy-text,
.page-fishing-games-deep-sea-adventure__promo-text,
.page-fishing-games-deep-sea-adventure__support-text {
    font-size: 1em;
    color: #cccccc;
    flex-grow: 1; /* Allow text to grow and push button to bottom */
    margin-bottom: 20px;
}

/* Specific button styling within cards */
.page-fishing-games-deep-sea-adventure__step-item .page-fishing-games-deep-sea-adventure__btn-primary,
.page-fishing-games-deep-sea-adventure__promo-item .page-fishing-games-deep-sea-adventure__btn-primary,
.page-fishing-games-deep-sea-adventure__promo-item .page-fishing-games-deep-sea-adventure__btn-secondary {
    margin-top: auto; /* Push button to the bottom of the flex container */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-deep-sea-adventure__main-title {
        font-size: 2.8em;
    }
    .page-fishing-games-deep-sea-adventure__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-deep-sea-adventure__hero-section {
        padding-top: 100px !important; /* Mobile: Adjust based on actual header height */
        min-height: 400px;
    }

    .page-fishing-games-deep-sea-adventure__main-title {
        font-size: 2em;
    }

    .page-fishing-games-deep-sea-adventure__hero-description {
        font-size: 1em;
    }

    .page-fishing-games-deep-sea-adventure__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
        min-width: unset;
    }

    .page-fishing-games-deep-sea-adventure__section {
        padding: 40px 15px;
    }

    .page-fishing-games-deep-sea-adventure__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games-deep-sea-adventure__section-description {
        font-size: 0.95em;
    }

    .page-fishing-games-deep-sea-adventure__feature-grid,
    .page-fishing-games-deep-sea-adventure__step-grid,
    .page-fishing-games-deep-sea-adventure__strategy-card-grid,
    .page-fishing-games-deep-sea-adventure__promo-list,
    .page-fishing-games-deep-sea-adventure__support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games-deep-sea-adventure__feature-item,
    .page-fishing-games-deep-sea-adventure__step-item,
    .page-fishing-games-deep-sea-adventure__strategy-card,
    .page-fishing-games-deep-sea-adventure__promo-item,
    .page-fishing-games-deep-sea-adventure__support-item {
        padding: 20px;
    }

    .page-fishing-games-deep-sea-adventure__feature-title,
    .page-fishing-games-deep-sea-adventure__step-title,
    .page-fishing-games-deep-sea-adventure__strategy-title,
    .page-fishing-games-deep-sea-adventure__promo-title,
    .page-fishing-games-deep-sea-adventure__support-title {
        font-size: 1.4em;
    }

    .page-fishing-games-deep-sea-adventure__feature-text,
    .page-fishing-games-deep-sea-adventure__step-text,
    .page-fishing-games-deep-sea-adventure__strategy-text,
    .page-fishing-games-deep-sea-adventure__promo-text,
    .page-fishing-games-deep-sea-adventure__support-text {
        font-size: 0.9em;
    }
    
    /* Mobile image responsive optimization */
    .page-fishing-games-deep-sea-adventure img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-fishing-games-deep-sea-adventure__section,
    .page-fishing-games-deep-sea-adventure__container,
    .page-fishing-games-deep-sea-adventure__hero-content,
    .page-fishing-games-deep-sea-adventure__feature-item,
    .page-fishing-games-deep-sea-adventure__step-item,
    .page-fishing-games-deep-sea-adventure__strategy-card,
    .page-fishing-games-deep-sea-adventure__promo-item,
    .page-fishing-games-deep-sea-adventure__support-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}