/**
 * Sticky Header Styles for Panditji.in
 * 
 * This file contains styles for the sticky header functionality
 * 
 * @version 1.0
 * @date 2025-05-29
 */

/* Top bar transition */
.top-bar {
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1001;
}

/* Sticky header styles */
#sticky-header {
    transition: all 0.3s ease;
}

#sticky-header.scrolled {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #sticky-header .logo-text .site-title {
        font-size: 1rem !important;
    }
    
    #sticky-header .logo-text .site-tagline {
        font-size: 0.6rem !important;
    }
    
    #sticky-header .logo-om {
        font-size: 1.5rem !important;
    }
}
