/* style/sports.css */

/* Custom CSS Variables (for consistency with brand colors) */
:root {
    --primary-color: #017439; /* Main brand green */
    --secondary-color: #FFFFFF; /* Auxiliary white */
    --accent-color-register: #C30808; /* Red for register/login */
    --accent-color-login-text: #FFFF00; /* Yellow for register/login text */
    --background-color: #FFFFFF; /* Page background */
    --text-color-dark: #333333; /* Default dark text for light backgrounds */
    --text-color-light: #FFFFFF; /* Default light text for dark backgrounds */
    --border-color: #e0e0e0;
}

/* Base Styles for .page-sports scope */
.page-sports {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: var(--background-color); /* Default white background */
    line-height: 1.6;
}

/* Header offset for fixed header */
.page-sports {
    padding-top: var(--header-offset, 120px);
}

/* Sections */
.page-sports__section {
    padding: 60px 0;
    text-align: center;
}

.page-sports__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.page-sports__paragraph {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    line-height: 1.8;
}

.page-sports__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-sports__hero-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
    z-index: 1;
}

.page-sports__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-color-light);
}

.page-sports__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
}

.page-sports__intro-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    color: var(--text-color-light);
}

.page-sports__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}