/*
Theme Name: My News Theme
Author: News Insider
Description: A custom mobile-first news app style theme.
Version: 1.1
*/

/* બેઝિક સ્ટાઈલિંગ */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background-color: #f0f2f5; padding-bottom: 70px; }

/* ટોપ હેડર (Left Menu Icon) */
header { background-color: #ffffff; padding: 15px 20px; display: flex; justify-content: flex-start; align-items: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100;}
.menu-btn { font-size: 24px; cursor: pointer; color: #333; margin-right: 15px; }
header h1 { margin: 0; font-size: 20px; color: #1a1a1a; }
header h1 a { text-decoration: none; color: #1a1a1a; }

/* સાઇડ મેનૂ */
.side-menu { position: fixed; top: 0; left: -280px; width: 250px; height: 100%; background: #fff; box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: 0.3s; z-index: 1000; padding-top: 20px; }
.side-menu.active { left: 0; }
.close-btn { text-align: right; padding: 0 20px 20px; font-size: 24px; cursor: pointer; color: #888; }
.side-menu a { display: block; padding: 15px 25px; color: #333; text-decoration: none; font-size: 16px; border-bottom: 1px solid #f4f4f4; }
.side-menu a i { margin-right: 10px; color: #0056b3; }

/* ન્યૂઝ કાર્ડ કન્ટેનર */
.news-container { padding: 15px; }
.news-card { background: #fff; border-radius: 12px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.news-card img { width: 100%; height: auto; display: block; }
.news-content { padding: 15px; }
.news-title { font-size: 18px; font-weight: 700; margin: 0 0 12px; line-height: 1.4; }
.news-title a { color: #222; text-decoration: none; }
.news-meta { display: flex; align-items: center; color: #666; font-size: 14px; margin-bottom: 15px; }
.news-meta i { margin-right: 5px; color: #0056b3; }
.read-more-btn { display: inline-block; background: #1a6fd0; color: #fff; padding: 10px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 14px; }

/* ડાયનેમિક બોટમ નેવિગેશન (WordPress Menu) */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); z-index: 100; }
.bottom-menu-list { display: flex; justify-content: space-around; padding: 0; margin: 0; list-style: none; }
.bottom-menu-list li { flex: 1; text-align: center; }
.bottom-menu-list li a { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #666; text-decoration: none; font-size: 12px; padding: 10px 0; font-weight: 500;}
.bottom-menu-list li.current-menu-item a { color: #1a6fd0; }
.bottom-menu-list li a i { font-size: 20px; margin-bottom: 4px; }