@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d32f2f; /* News Red */
    --secondary-color: #1a237e; /* Dark Blue */
    --accent-color: #ff9800; /* Orange */
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Header & Navigation */
.top-header {
    background: var(--white);
    border-bottom: 3px solid var(--primary-color);
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
}

.nav-tabs-container {
    background: var(--secondary-color);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 20px !important;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

/* News Ticker */
.ticker-container {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.ticker-label {
    background: var(--primary-color);
    padding: 8px 15px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    z-index: 10;
}

/* News Cards */
.news-card {
    background: var(--white);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 20px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.news-card img {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card .card-body {
    padding: 20px;
}

.news-card .category-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.news-card .card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
    margin-top: 50px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
}

footer .footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

footer .footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Responsive Utilities */
@media (max-width: 991px) {
    .nav-link {
        padding: 10px 15px !important;
    }
}
