/* ===== Custom Styles for Bangalore Elite FC Academy ===== */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #39FF14;
}

/* Selection */
::selection {
    background: rgba(57, 255, 20, 0.3);
    color: #fff;
}

/* Hero Grid Background */
.hero-grid {
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 
        0 0 20px rgba(57, 255, 20, 0.5),
        0 0 40px rgba(57, 255, 20, 0.3),
        0 0 80px rgba(57, 255, 20, 0.1);
}

/* Pulse Slow Animation */
@keyframes pulse-slow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Nav scroll state */
.nav-scrolled {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Neon Button Glow */
.shadow-neon {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.15);
}

.shadow-neon:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
}

/* Form Inputs - Dark Mode Fix */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
	opacity: 1;
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Map iframe dark mode */
iframe {
    border-radius: 16px;
}

/* Image hover zoom container */
.overflow-hidden img {
    transition: transform 0.7s ease;
}

/* Mobile Menu Transition */
#mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

#mobileMenu.active {
    max-height: 500px;
}

/* Counter animation helper */
.counter {
    display: inline-block;
}

/* Responsive Tweaks */
@media (max-width: 640px) {
    .glow-text {
        text-shadow: 
            0 0 10px rgba(57, 255, 20, 0.4),
            0 0 20px rgba(57, 255, 20, 0.2);
    }
}

/* Card shine effect on hover */
.group:hover .shine-effect {
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(57, 255, 20, 0.03) 45%,
        rgba(57, 255, 20, 0.05) 50%,
        rgba(57, 255, 20, 0.03) 55%,
        transparent 60%
    );
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Loading skeleton for images */
img {
    background: #111;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #39FF14;
    outline-offset: 2px;
}

/* Gradient text utility */
.text-gradient-neon {
    background: linear-gradient(135deg, #39FF14, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
background-color: white;
zoom: 1.3
}