/*
Theme Name: TimelyIndia
Theme URI: https://timelyindia.com/
Author: TimelyIndia Team
Author URI: https://timelyindia.com/
Description: A lightweight, mobile-first WordPress news theme inspired by GeneratePress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: news, light, responsive, clean
Text Domain: timelyindia
*/

/* Sticky bottom ad (mobile) */
@media (max-width: 768px) {
    .sticky-ad {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #f1f1f1;
        text-align: center;
        padding: 10px;
        z-index: 999;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    nav ul.active {
        display: flex;
    }
}

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}
body.dark-mode a {
    color: #90caf9;
}
body.dark-mode header, body.dark-mode footer {
    background: #1e1e1e;
}


/* Breadcrumb Styles */

.breadcrumb {
    font-size: 14px;
    margin: 10px 0;
}
.breadcrumb a {
    text-decoration: none;
    color: #0073aa;
}
