/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    background: #f4f6f9;
    color: #1a1a2e;
    line-height: 1.7;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: #1a1a2e; }
img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 50px;
    width: auto;
}
.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
}
.logo-text span {
    color: #e74c3c;
}

/* === Navigation === */
.main-menu ul {
    display: flex;
    list-style: none;
    gap: 5px;
}
.main-menu ul li a {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}
.main-menu ul li a:hover {
    background: #e74c3c;
    color: #fff;
}

/* === Header Right === */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.search-btn, .social-icon {
    color: #555;
    font-size: 18px;
    transition: 0.3s;
}
.search-btn:hover, .social-icon:hover {
    color: #e74c3c;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* === Mobile Menu === */
.mobile-menu {
    display: none;
    background: #1a1a2e;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}
.mobile-menu.active { display: flex; }
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-menu ul li a {
    color: #fff;
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
}
.mobile-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}
.mobile-social a {
    color: #fff;
    font-size: 24px;
}

/* ===== BREAKING NEWS ===== */
.breaking-news {
    background: #e74c3c;
    color: #fff;
    padding: 10px 0;
}
.breaking-label {
    background: #c0392b;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 15px;
}
.breaking-text marquee {
    color: #fff;
    font-weight: 500;
}

/* ===== MAIN GRID ===== */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

/* === News Cards === */
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    transition: 0.3s;
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.news-content {
    padding: 20px;
}
.news-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
.news-category {
    background: #e74c3c;
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.news-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-content h2 a:hover {
    color: #e74c3c;
}
.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #e74c3c;
    font-weight: 600;
}
.read-more:hover {
    color: #c0392b;
}

/* ===== SIDEBAR ===== */
.widget {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.widget-title {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.category-list li, .popular-list li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.category-list li a, .popular-list li a {
    display: flex;
    justify-content: space-between;
    color: #333;
}
.category-list li a:hover, .popular-list li a:hover {
    color: #e74c3c;
}
.newsletter input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin: 10px 0;
}
.newsletter button {
    width: 100%;
    padding: 12px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
.newsletter button:hover {
    background: #c0392b;
}
.social-links a {
    display: block;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
}
.social-links .fb { background: #1877f2; }
.social-links .tw { background: #1da1f2; }
.social-links .yt { background: #ff0000; }
.social-links .ig { background: #e4405f; }
.tag-cloud a {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    margin: 4px;
    font-size: 13px;
}
.tag-cloud a:hover {
    background: #e74c3c;
    color: #fff;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    padding: 5px 0;
}
.footer-col ul li a {
    color: #ccc;
}
.footer-col ul li a:hover {
    color: #e74c3c;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.footer-social a {
    background: rgba(255,255,255,0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.footer-social a:hover {
    background: #e74c3c;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.credit a {
    color: #e74c3c;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .logo-text {
        font-size: 20px;
    }
    .news-content h2 {
        font-size: 18px;
    }
    .header-right .social-icon {
        display: none;
    }
    .breaking-label {
        font-size: 12px;
        padding: 3px 10px;
    }
}
@media print {
    header, .breaking-news, .sidebar, footer {
        display: none;
    }
}
