/* style/fishing-games-strategy.css */

/* --- Base Styles --- */
.page-fishing-games-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is #121212 (dark), so use light text */
    background-color: #121212; /* Ensure consistency with body background */
}

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

.page-fishing-games-strategy__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games-strategy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

/* --- Hero Section --- */
.page-fishing-games-strategy__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-fishing-games-strategy__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: 2;
}

.page-fishing-games-strategy__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-fishing-games-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-fishing-games-strategy__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-fishing-games-strategy__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- Buttons --- */
.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games-strategy__btn-primary {
    background-color: #C30808; /* Use custom color for register/login */
    color: #ffffff; /* Ensure contrast with #C30808 */
    border: 2px solid #C30808;
}

.page-fishing-games-strategy__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-fishing-games-strategy__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-fishing-games-strategy__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #017439;
}

/* --- Introduction Section --- */
.page-fishing-games-strategy__introduction-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

/* --- Strategy Section (General) --- */
.page-fishing-games-strategy__strategy-section {
    padding: 60px 0;
    background-color: #121212;
}

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

.page-fishing-games-strategy__strategy-card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent dark card */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f0f0f0;
}

.page-fishing-games-strategy__strategy-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games-strategy__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
    display: block; /* Remove extra space below image */
}