/* style/sports.css */

/* Base Styles for the Sports Page */
.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Section Padding */
.page-sports__section-padding {
    padding: 60px 0;
}

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

.page-sports__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Main Color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-sports__sub-title {
    font-size: 1.8em;
    color: #FFD36B; /* Auxiliary Color */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #FFF6D6; /* Text Main */
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Gradient using main and auxiliary colors */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    padding-bottom: 60px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.page-sports__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
}

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: #ffffff;
    padding: 20px;
}

.page-sports__hero-title {
    font-size: clamp(2.5em, 5vw, 3.8em); /* H1 font size with clamp */
    color: #F2C14E; /* Main Color */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-sports__hero-description {
    font-size: clamp(1.1em, 2vw, 1.4em);
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Main Color */
    border: 2px solid #F2C14E; /* Main Color border */
}

.page-sports__btn-secondary:hover {
    background: #F2C14E; /* Main Color */
    color: #0A0A0A; /* Background */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.2);
}

/* Card Background Color */
.page-sports__card-bg {
    background-color: #111111; /* Card B G */
}

/* Dark Section Background Color */
.page-sports__dark-bg {
    background-color: #0A0A0A; /* Background */
    color: #FFF6D6; /* Text Main */
}