/* ========================================
   HERO COMPONENT
   ======================================== */

.hero-sports {
    position: relative;
    background: linear-gradient(135deg, #1a2f4d 0%, var(--color-navy) 50%, #2a4a7a 100%);
    border-bottom: 4px solid var(--color-red);
    color: var(--color-white) !important;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-sports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/football1951banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-sports .container {
    position: relative;
    z-index: 1;
}

.hero-sports h1,
.hero-sports p,
.hero-sports * {
    color: var(--color-white) !important;
}

.hero-icon {
    display: inline-block;
    animation: hero-float 3s ease-in-out infinite;
}

.hero-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    stroke: var(--color-red-light);
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Search Bar */
.search-container {
    max-width: 650px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-white);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.search-icon {
    color: var(--color-slate);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    color: var(--color-black);
    background: transparent;
}

.search-input::placeholder {
    color: var(--color-slate);
}

.search-button {
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 0.5rem;
}

.search-button:hover {
    background-color: var(--color-navy);
}
