/* style/sports.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --text-on-light: #333333;
    --button-register-bg: #C30808;
    --button-register-text: #FFFF00;
    --body-bg: #1a1a2e;
}

.page-sports {
    font-family: Arial, sans-serif;
    color: var(--text-on-dark); /* Default text color for dark body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: var(--text-on-dark);
    text-align: center;
    overflow: hidden;
    padding: 0; 
}

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