/* Custom Styles */
html {
    scroll-padding-top: 5rem;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Header animation */
header {
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

/* Button hover effects */
button {
    transform: translateY(0);
    transition: transform 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Section fade-in animation */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom animations for hero section */
.hero-text {
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for district cards */
.bg-white\/10 {
    transition: all 0.3s ease;
}

.bg-white\/10:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Award cards hover effect */
.shadow-lg {
    transition: all 0.3s ease;
}

.shadow-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Social media icons hover animation */
.fab {
    transition: transform 0.3s ease;
}

.fab:hover {
    transform: scale(1.2);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .mobile-menu {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }
} 