﻿@import url('https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --saffron: #FF6F00;
    --saffron-light: #FFF3E0;
    --saffron-dark: #E65100;
    --ink: #1A1208;
    --ink-mid: #3D3020;
    --muted: #7A6A55;
    --cream: #FFFDF8;
    --card-bg: #FFFFFF;
    --border: rgba(255,111,0,0.15);
    --border-strong: rgba(255,111,0,0.35);
    --green: #1B6E3C;
    --green-light: #E8F5EE;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Winky Sans", sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
}
body a {
    text-decoration:none;
    color:#009;
}
    body a:hover {
        text-decoration: none;
        color: #ff0000;
    }
/* ---- SKIP LINK (accessibility + SEO) ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--saffron);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9999;
}

    .skip-link:focus {
        top: 1rem;
    }
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}
/* ---- TOPBAR ---- */
.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 6px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .topbar a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        margin-left: 1rem;
    }

        .topbar a:hover {
            color: var(--saffron);
        }

/* ---- HEADER / NAV ---- */
header {
    background: #fff;
    border-bottom: 2px solid var(--saffron);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--saffron);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    color: #fff;
    font-size: 20px;
    letter-spacing: -1px;
}

.logo-text {
  
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
}

    .logo-text span {
        color: var(--saffron);
    }

.navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}
#newsContainer {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    height: 500px; /* Fixed Height */
    overflow-y: auto; /* Vertical Scroll */
    overflow-x: hidden;
    background: #f5f5f5;
    border-radius: 10px;
}

.news-title {
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    border-left: 5px solid #e91e63;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .news-title:hover {
        transform: translateX(5px);
    }

    .news-title a {
        text-decoration: none;
        color: #222;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;
    }

        .news-title a:hover {
            color: #e91e63;
        }

/* Attractive Scrollbar */

#newsContainer::-webkit-scrollbar {
    width: 8px;
}

#newsContainer::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}

#newsContainer::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 10px;
}

    #newsContainer::-webkit-scrollbar-thumb:hover {
        background: #c2185b;
    }
/* MAIN MENU */
.menu {
    list-style: none;
    display: flex;
}

    .menu li {
        position: relative;
    }

        .menu li a {
            color: #009;
            text-decoration: none;
            padding: 12px 15px;
            display: block;
            transition: 0.3s;
        }

            .menu li a:hover {
                background: #f2f2f2;
                color:#ff0000;
            }

/* SUBMENU */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--saffron);
    list-style: none;
    display: none;
 
    z-index: 999;
}

    .submenu li {
        width: 100%;
    }
    .submenu li a{
       color:#fff;
    }

.menu li:hover > .submenu {
    display: block;
}

/* THIRD LEVEL */
.submenu .submenu {
    top: 0;
    left: 100%;
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: #333;
        margin: 4px 0;
        border-radius: 5px;
    }

/* MOBILE DESIGN */
@media(max-width:768px) {

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #eee;
        flex-direction: column;
        display: none;
    }

        .menu.active {
            display: flex;
        }

        .menu li {
            width: 100%;
        }

            .menu li a {
                border-top: 1px solid rgba(255,255,255,0.08);
            }

    .submenu {
        position: static;
        display: none;
        background: #333;
    }

        .submenu .submenu {
            position: static;
            background: #000;
        }

    .menu li.open > .submenu {
        display: block;
    }

    .submenu-toggle {
        float: right;
        font-size: 14px;
    }
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #1A1208 0%, #3D2A10 55%, #6B3C10 100%);
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '🇮🇳';
        position: absolute;
        right: -40px;
        top: -40px;
        font-size: 320px;
        opacity: 0.04;
        pointer-events: none;
    }

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--saffron);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero h1 {

    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

    .hero h1 em {
        color: var(--saffron);
        font-style: normal;
    }

.hero p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--saffron);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--saffron-dark);
        transform: translateY(-1px);
    }

.btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

    .btn-ghost:hover {
        border-color: var(--saffron);
        background: rgba(255,111,0,0.1);
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

    .stat-card .num {
  
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--saffron);
        display: block;
    }

    .stat-card .label {
        font-size: 12px;
        opacity: 0.65;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 4px;
    }

/* ---- TICKER ---- */
.ticker-wrap {
    background: var(--saffron);
    color: #fff;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--saffron-dark);
    padding: 0 18px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    z-index: 2;
    white-space: nowrap;
}

.ticker-inner {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    padding-left: 130px;
    white-space: nowrap;
}

    .ticker-inner span {
        font-size: 13px;
        font-weight: 500;
    }

        .ticker-inner span::before {
            content: '● ';
            opacity: 0.6;
        }

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---- SECTION COMMONS ---- */
.section {
    padding: 4rem 2rem;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.25rem;
}

.section-title {

    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ink);
    position: relative;
    padding-left: 18px;
}

    .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 60%;
        background: var(--saffron);
        border-radius: 3px;
    }

.section-subtitle {
    font-size: 14px;
    color: var(--muted);
}

.view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--saffron);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
    white-space: nowrap;
}

    .view-all:hover {
        border-bottom-color: var(--saffron);
    }

/* ---- CATEGORY PILLS ---- */
.cat-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cat-pill {
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--border-strong);
    color: var(--muted);
    transition: all 0.2s;
    background: #fff;
}

    .cat-pill:hover, .cat-pill.active {
        background: var(--saffron);
        color: #fff;
        border-color: var(--saffron);
    }

/* ---- FEATURED CARD GRID ---- */
.featured-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 1.25rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        box-shadow: 0 8px 32px rgba(255,111,0,0.12);
        transform: translateY(-3px);
    }

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #f5e8d8, #ffe0b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    min-height: 180px;
}

    .card-img.tall {
        aspect-ratio: 4/5;
        min-height: 280px;
    }

.card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--saffron);
    margin-bottom: 8px;
}

.card-title {

    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.35;
    flex: 1;
    margin-bottom: 10px;
}

.card-main .card-title {
    font-size: 1.5rem;
}

.card-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center;
}

    .card-meta span::before {
        content: '·';
        margin-right: 10px;
    }

    .card-meta span:first-child::before {
        content: none;
    }

/* ---- TOPIC CARDS ---- */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.topic-card {
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

    .topic-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .topic-card .icon {
        font-size: 2rem;
    }

    .topic-card .tc-title {
        font-weight: 700;
        font-size: 15px;
        color: var(--ink);
    }

    .topic-card .tc-desc {
        font-size: 13px;
        line-height: 1.5;
    }

/* ---- BOLLYWOOD STRIP ---- */
.bwood-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.star-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .star-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(255,111,0,0.12);
    }

.star-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: linear-gradient(160deg, #ffe0b2, #f5c0c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.star-name {
    font-weight: 600;
    font-size: 13px;
    padding: 10px 8px;
    color: var(--ink);
}

/* ---- INFO CARDS ---- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
}

    .info-card h3 {
     
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 0.75rem;
    }

    .info-card ul {
        list-style: none;
    }

        .info-card ul li {
            padding: 7px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13.5px;
            color: var(--ink-mid);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .info-card ul li:last-child {
                border-bottom: none;
            }

            .info-card ul li a {
                color: inherit;
                text-decoration: none;
                flex: 1;
            }

                .info-card ul li a:hover {
                    color: var(--saffron);
                }

            .info-card ul li .badge {
                font-size: 11px;
                font-weight: 600;
                color: var(--saffron);
                background: var(--saffron-light);
                padding: 2px 8px;
                border-radius: 100px;
            }

/* ---- SHAYARI / ENTERTAINMENT ---- */
.shayari-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.shayari-card {
    background: linear-gradient(135deg, #1A1208, #3D2A10);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .shayari-card::before {
        content: '❝';
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 6rem;
        opacity: 0.06;
        font-family: serif;
        line-height: 1;
    }

    .shayari-card blockquote {
     
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
        font-style: italic;
        position: relative;
    }

    .shayari-card .author {
        font-size: 12px;
        opacity: 0.55;
    }

    .shayari-card .read-more {
        display: inline-block;
        margin-top: 1rem;
        font-size: 13px;
        font-weight: 600;
        color: var(--saffron);
        text-decoration: none;
    }

/* ---- TRAVEL ---- */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.travel-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    text-decoration: none;
    display: block;
    background: linear-gradient(160deg, #b2dfdb, #80cbc4);
    transition: transform 0.2s;
}

    .travel-card:hover {
        transform: scale(1.02);
    }

    .travel-card .place-emoji {
        font-size: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

.travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2rem 1.25rem 1.25rem;
    color: #fff;
}

    .travel-overlay h3 {
     
        font-size: 1.05rem;
        font-weight: 700;
    }

    .travel-overlay p {
        font-size: 11px;
        opacity: 0.7;
        margin-top: 3px;
    }

/* ---- SEO TEXT SECTION ---- */
.seo-section {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem;
}

.seo-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.seo-block h2 {
 
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ink);
}

.seo-block p {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

.seo-block a {
    color: var(--saffron);
    text-decoration: none;
}

    .seo-block a:hover {
        text-decoration: underline;
    }

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

    .faq-item h3 {
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 6px;
    }

    .faq-item p {
        font-size: 13.5px;
        color: var(--muted);
    }

/* ---- FOOTER ---- */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 20px;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.6;
    margin-bottom: 1.25rem;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

        .social-links a:hover {
            background: var(--saffron);
            color: #fff;
            border-color: var(--saffron);
        }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 7px;
    }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: #fff;
            }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        font-size: 12px;
        opacity: 0.4;
    }

    .footer-bottom nav {
        display: flex;
        gap: 1.25rem;
    }

        .footer-bottom nav a {
            font-size: 12px;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
        }

            .footer-bottom nav a:hover {
                color: rgba(255,255,255,0.8);
            }

/* ---- UTILS ---- */
.bg-cream {
    background: var(--cream);
}

.bg-white {
    background: #fff;
}

.bg-dark {
    background: #0e0e0e;
}

@media (max-width: 960px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bwood-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .featured-grid, .topics-grid, .bwood-strip, .info-grid {
        grid-template-columns: 1fr;
    }

    .shayari-grid, .travel-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: none;
    }
}
