/*
Theme Name: TAZA खबर
Theme URI: https://TazaKhabhar.com/
Author: Your Name
Author URI: https://your-website.com/
Description: A modern, responsive WordPress news theme inspired by nwnews24.com. Clean, minimal, and professional news portal layout designed for TajaKhabhar.com.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: news, magazine, responsive-layout, one-column, two-columns, right-sidebar, custom-header, custom-menu, featured-images, post-formats, sticky-post, theme-options, translation-ready
Text Domain: taza-khabar

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Note: This file is for theme metadata. 
The actual styling is handled by Tailwind CSS, which will be enqueued via the functions.php file.
You can add custom, non-Tailwind CSS overrides here if needed.
*/



/* Dropdown Styles */
nav li:hover > .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 9999;
}
.dropdown-menu li {
    position: relative;
}
.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}
.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}



/* Breaking News Ticker Animation */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.marquee-wrapper {
    position: relative;
    overflow: hidden;
}
.breaking-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0 10px;
    background-color: #b91c1c;
    display: flex;
    align-items: center;
    z-index: 10;
}
.marquee-content {
    overflow: hidden;
    white-space: nowrap;
    margin-left: 120px;
}
.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.marquee-content:hover .animate-marquee {
    animation-play-state: paused;
}


/* Added by ChatGPT - Ensure H2 headings are visible and styled */
h2 {
    font-size: 1.5rem; /* Bigger text */
    font-weight: bold; /* Bold for emphasis */
    margin: 1em 0 0.5em; /* Space above and below */
    color: #c00; /* Red shade to match theme */
}


/* Increased H2 heading size */
h2 {
    font-size: 1.8em;
    font-weight: bold;
}

/* Increase H2 size only on single post (article) pages */
body.single-post h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}
