/*
Theme Name: DAM SNJ Smart News Portal V2
Theme URI: https://dainikaakashmail.com
Description: A high-end, 100% automated, stealth news engine for WordPress. Inspired by Dainik Bhaskar and modern design standards.
Author: Shubhanshu Neelam Joshi
Version: 2.5.0
Text Domain: smart-news-portal
*/

/* 
Tailwind CSS is injected via CDN for speed and zero-configuration. 
Any secondary custom CSS goes here.
*/

:root {
    --primary-red: #d32f2f;
    --dark-slate: #0f172a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphic Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scrollbar Hide Utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom Post Content Scaling */
.prose img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile Menu Slide */
#mobile-swipe-menu {
    transition: transform 0.3s ease-in-out;
}
#mobile-swipe-menu.translate-x-full {
    transform: translateX(100%);
}