/* 
    Mera Abhiyan - Professional Design System
    Theme: Sunset (Crimson, Amber, Midnight)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fbfad1; /* Surface Cream */
    color: #330404; /* Accent Midnight */
    font-family: 'Poppins', 'Hind Vadodara', sans-serif;
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu a {
    position: relative;
}

#mobile-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fa8c1c; /* Secondary Amber */
    transition: width 0.3s ease;
}

#mobile-menu a:hover::after {
    width: 100%;
}

.logo-white {
    filter: brightness(0) invert(1);
}

/* Custom Zoom for Hero */
@keyframes slow-zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.animate-slow-zoom {
    animation: slow-zoom 20s infinite alternate ease-in-out;
}

/* Scroll Indicators and Micro-interactions */
.active-scale:active {
    transform: scale(0.95);
}

/* Cropper Customizations */
.cropper-view-box,
.cropper-face {
    border-radius: 50%;
}
