/* style/sports.css */

/* Custom Colors */
:root {
    --page-sports-primary: #11A84E;
    --page-sports-secondary: #22C768;
    --page-sports-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-sports-card-bg: #11271B;
    --page-sports-background: #08160F; /* This will be the body background from shared.css */
    --page-sports-text-main: #F2FFF6;
    --page-sports-text-secondary: #A7D9B8;
    --page-sports-border: #2E7A4E;
    --page-sports-glow: #57E38D;
    --page-sports-gold: #F2C14E;
    --page-sports-divider: #1E3A2A;
    --page-sports-deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-sports {
    color: var(--page-sports-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--page-sports-background); /* Explicitly set for main content area if needed, but body handles global */
}

/* Sections */
.page-sports__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-sports__dark-section {
    background-color: var(--page-sports-card-bg); /* Darker background for contrast sections */
    color: var(--page-sports-text-main);
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden; /* Prevent content overflow */
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    position: relative;
    margin-bottom: 30px; /* Space between image and text content */
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text readability, NO color filters */
}

.page-sports__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    position: relative; /* Ensure it's in normal flow, not overlaying image */
    z-index: 2; /* Ensure text is above image (if any subtle overlap occurs due to negative margin or similar) */
    color: var(--page-sports-text-main);
}