/* style/sports.css */
/* Base Styles for Sports Page */
.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f9fa; /* Slightly off-white background for the page content */
}

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

.page-sports__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #26A9E0; /* Primary brand color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-sports__section-description {
    font-size: 18px;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #26A9E0; /* Primary color background for hero */
    color: #ffffff; /* White text for dark background */
    overflow: hidden;
}

.page-sports__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-sports__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    max-width: 1000px; /* Limit image width */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-sports__hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-sports__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-sports__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__cta-button--primary {
    background: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-sports__cta-button--primary:hover {
    background: #d46f06;
    border-color: #d46f06;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__cta-button--secondary {
    background: #ffffff;
    color: #26A9E0; /* Primary brand color for secondary action */
    border: 2px solid #26A9E0;
}

.page-sports__cta-button--secondary:hover {
    background: #f0f0f0;
    color: #1e87c0;
    border-color: #1e87c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-sports__introduction-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
    color: #333333;
}

.page-sports__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.page-sports__feature-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon {
    width: 100%; /* Ensure images are responsive */
    max-width: 250px; /* Max width for feature icons */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-sports__feature-title {
    font-size: 24px;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-sports__feature-item p {
    font-size: 16px;
    color: #666666;
}

/* Quick Access Section */
.page-sports__quick-access-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Dark background */
    color: #ffffff;
}

.page-sports__quick-access-section .page-sports__section-title {
    color: #ffffff;
}

.page-sports__quick-access-section .page-sports__section-description {
    color: #f0f0f0;
}

.page-sports__access-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.page-sports__access-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-sports__access-link--primary {
    background: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-sports__access-link--primary:hover {
    background: #d46f06;
    border-color: #d46f06;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.page-sports__access-link--secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #ffffff;
}

.page-sports__access-link--secondary:hover {
    background: #f0f0f0;
    color: #1e87c0;
    border-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.page-sports__access-link-icon {
    font-size: 28px;
    line-height: 1;
}

.page-sports__access-link-text {
    flex-grow: 1;
    text-align: center;
}

/* Main Sports Section */
.page-sports__main-sports-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    color: #333333;
}

.page-sports__sports-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}