/* Custom CSS for Akshara Play School */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f8f9fa;
    color: #2b2d42;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-nunito {
    font-family: 'Nunito', sans-serif;
}

/* Glassmorphism Navbar */
.nav-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section Waves */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.wave-bottom .shape-fill {
    fill: #f8f9fa;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(90deg, #1d2793 0%, #da1b1b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Floating animation for hero image */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Button glow */
.btn-glow {
    position: relative;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    border-radius: inherit;
    transition: opacity 0.3s ease;
}
.btn-glow:hover::after {
    opacity: 0.8;
}

.blob-bg {
    position: absolute;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.6;
    border-radius: 50%;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 400px; height: 400px;
    background: #1d2793;
}
.blob-2 {
    bottom: -10%; right: -10%;
    width: 300px; height: 300px;
    background: #a51889;
}
.blob-3 {
    top: 40%; left: 30%;
    width: 200px; height: 200px;
    background: #da1b1b;
}

/* Hide scrollbar for gallery but keep functionality */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
