@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
body {
    font-family: "Google Sans", "Segoe UI", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #111;
}

.widget a, .news-card a { color: #111 !important; text-decoration:none; }
.sponsored-card a { color: #fff !important; text-decoration:none; }

footer a { color: #fff; }

/* Social Share */

.share-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.share-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid #c40000;
  border-radius: 50%;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.2s ease-in-out;
}

.share-btn i {
  font-size: 18px;
}

.share-btn:hover {
  background: #c40000;
  color: #ffffff;
}


/* NAV LINKS */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    padding: 12px 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c40000;
}

/* BURGER ICON */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* DROPDOWN MENU */
.dropdown-menu {
    background: #111;
    border: none;
    border-top: 3px solid #c40000;
    padding: 8px 0;
}

.dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 18px;
}

.dropdown-item:hover {
    background: #c40000;
    color: #fff;
}

/* DESKTOP HOVER SUPPORT */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* AUTH NAV ITEMS */
.nav-auth .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.nav-auth .btn {
    font-weight: 700;
    padding: 6px 14px;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 991px) {
    .nav-auth .btn {
        width: 100%;
        margin-top: 10px;
    }

    .nav-auth .nav-link {
        padding-left: 15px;
    }
}


/* MOBILE DROPDOWN */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #111;
        padding: 10px 15px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        border-bottom: 1px solid #222;
    }
}

/* HERO BOX */
.hero-box {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-content {
    padding-left: 30px;
}

.hero-category {
    color: #c40000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0 15px;
    line-height: 1.2;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.hero-btn {
    font-weight: 700;
    padding: 10px 25px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 28px;
    }
}


/* HEADER */
.site-header {
    background: #000;
    padding: 15px 0;
    border-bottom: 25px solid #c00;
}

.logo {
    color: #000;
    font-weight: 800;
    margin: 0;
}

.logo span {
    color: #c40000;
}

.nav-link {
    color: #fff;
    font-weight: 800;
    margin-left: 15px;
}

.nav-link:hover {
    color: #c40000;
}

/* SECTION TITLES */
.section-title, .category-title {
	width: fit-content;
    font-weight: 700;
    border-left: 5px solid #c40000;
    padding-left: 12px;
    padding: 10px;
    margin-bottom: 20px;
    background: #000;
    color: #fff;
}

/* FEATURED */
.featured-news {
    background: #fff;
    padding: 40px 0;
}

.featured-main img {
    width: 100%;
}

.featured-main .content {
    padding: 15px;
}

.featured-small {
    display: flex;
    gap: 15px;
    background: #f8f8f8;
    padding: 10px;
}

.featured-small img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}

/* SPONSORED */
.sponsored-news {
    background: #111;
    color: #fff;
    padding: 40px 0;
}

.sponsored-card img {
    width: 100%;
}

.sponsored-card {
    background: #1c1c1c;
    padding: 15px;
}

/* CATEGORY */
.category-section {
    padding: 20px 0;
    background: #fff;
}

.category-section.alt-bg {
    background: #f0f0f0;
}

.news-card img {
    width: 100%;
}

.news-card {
    background: #fff;
    padding: 15px;
    border-top: 4px solid #c40000;
}

.date {
    font-size: 12px;
    color: #333;
    
}

/* FOOTER */
.site-footer {
    background: #111;
    border-top: 10px solid #c40000;
    color: #aaa;
    padding: 20px 0;
    margin-top: 40px;
}

/* PRICING */
.pricing-section {
    background: #000;
    padding: 60px 0;
    text-align: center;
}

.section-subtitle {
    color: #fff;
    font-size: 16px;
}

.pricing-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-top: 4px solid #c40000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
}

.pricing-box.popular {
    transform: translateY(-10px);
    border-top: 4px solid #c40000;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c40000;
    color: #fff;
    padding: 5px 12px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 20px;
}

.plan-name {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 5px;
}

.plan-desc {
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
}

.currency {
    font-size: 20px;
    vertical-align: super;
}

.duration {
    font-size: 14px;
    color: #777;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features li {
    margin-bottom: 10px;
    font-size: 15px;
}

.features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

/* MOBILE */
@media (max-width: 768px) {
    .pricing-box.popular {
        transform: none;
    }
}


/* TEXT HERO */
.text-hero {
    background: #fff;
    padding: 60px 0 50px;
    border-bottom: 1px solid #e0e0e0;
}

.bi-newspaper { font-size: 80px; }

.hero-kicker {
    display: inline-block;
    color: #c40000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.hero-subtitle {
    font-size: 18px;
    color: #444;
    max-width: 780px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-cta {
    font-weight: 700;
    padding: 12px 30px;
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}


/* SINGLE POST */
.single-post {
    background: #fff;
    padding: 40px 0;
}

.post-category {
    color: #c40000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.post-title {
    font-size: 48px;
    font-weight: 900;
    margin: 10px 0;
}

.post-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 20px;
}

.post-hero {
    margin: 25px 0;
}

.single-post p {
    font-size: 17px;
    line-height: 1.75;
}

.single-post h2 {
    font-weight: 700;
    margin-top: 30px;
}

blockquote {
    border-left: 5px solid #c40000;
    padding-left: 15px;
    background: #f6f6f6;
    font-style: italic;
    margin: 25px 0;
}

/* SHARE */
.inline-share {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.inline-share a {
    margin-right: 15px;
    font-weight: 600;
    color: #c40000;
}

/* SIDEBAR */
.sidebar-widget {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 25px;
    border-top: 4px solid #c40000;
}

.widget-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-news {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-news img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.sidebar-news a {
    font-weight: 600;
    color: #111;
    display: block;
}

.sidebar-news a:hover {
    color: #c40000;
}

.date {
    font-size: 12px;
    color: #777;
}

/* SUBSCRIBE */
.subscribe-widget input {
    font-size: 14px;
}

.subscribe-widget button {
    font-weight: 700;
}

/* SPONSORED */
.sponsored-widget {
    background: #111;
    color: #fff;
}

.sponsored-widget a {
    color: #fff;
}

.sponsored-widget .date {
    color: #ccc;
}
/* FOOTER SOCIAL ICONS */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 15px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #c40000;
    color: #fff;
}

/* OPTIONAL BRAND COLORS ON HOVER */
.social-icon.facebook:hover { background: #1877f2; }
.social-icon.linkedin:hover { background: #0a66c2; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.instagram:hover { 
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.social-icon.x:hover { background: #000; }

/* FOOTER WIDGETS */
.footer-widgets {
    background: #000;
    padding: 50px 0 30px;
    border-bottom: 5px solid #c40000;
    
}

.footer-widget h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-widget p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
}

.footer-widget ul li a:hover {
    color: #c40000;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 25px;
    }
}

