/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 28, 58, 0.85) 0%, rgba(5, 15, 35, 0.9) 50%, rgba(255, 165, 0, 0.1) 100%),
        url('../football-stars-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
    box-sizing: border-box;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 28, 58, 0.4) 100%);
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #FFD700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Styles */
.countdown-container {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
}

.countdown-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 215, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    display: flex;
    align-items: center;
    margin: 0 -0.5rem;
    opacity: 0.7;
}

.countdown-date {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-weight: 500;
}

/* CTA Buttons */
.hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-primary:hover::before {
    width: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover::before {
    width: 100%;
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto 0.5rem;
    border-right: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: #fff;
}

.scroll-indicator:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
        border-radius: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-position: center 20%;
        padding: 0.5rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        margin: 0.25rem;
        border-radius: 12px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-container {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation for countdown numbers */
.flip-anim {
    animation: flip 0.5s ease-out;
}

@keyframes flip {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}
