
/* Football Academy Section */
.football-academy-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.academy-container {
    max-width: 1400px;
    margin: 0 auto;
}

.academy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.academy-text {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

.academy-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

.academy-subtitle {
    font-size: 1.8em;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 600;
    font-style: italic;
}

.academy-description {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

.academy-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background: #ffd700;
    color: #1a1a1a;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.academy-cta:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.academy-video {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.academy-video iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.academy-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInRight 1s ease-out;
    transition: transform 0.5s ease;
}

.academy-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.academy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.academy-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.academy-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .academy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .academy-title {
        font-size: 2.5em;
    }
    
    .academy-subtitle {
        font-size: 1.5em;
    }
    
    .academy-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .football-academy-section {
        padding: 50px 15px;
    }
    
    .academy-title {
        font-size: 2em;
        letter-spacing: 2px;
    }
    
    .academy-subtitle {
        font-size: 1.2em;
    }
    
    .academy-description {
        font-size: 1em;
        text-align: left;
    }
    
    .academy-video iframe {
        height: 250px;
    }
    
    .overlay-text {
        font-size: 1.8em;
        letter-spacing: 3px;
    }
}
