﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
      padding-bottom: 60px;
}


/* HEADER */
.site-header {
    background: #c40000;
    color: #fff;
    padding: 15px;
    text-align: center;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 12px;
}

.layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
}

/* MAIN CONTENT */
.main-content {
}
.container {
    margin-top: 90px;  /* adjust if logo height changes */
}


/* NEWS CARD */
.news-card {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.news-title {
    margin: 0 0 10px;
    font-size: 22px;
}

.news-title a {
    color: #111;
    text-decoration: none;
}

.news-title a:hover {
    color: #c40000;
}

.img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-meta {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 10px;
}

.city {
    background: #c40000;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 15px;
}

.sidebar-box {
    background: #fff;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.sidebar-box h3 {
    margin-top: 0;
    font-size: 18px;
    border-bottom: 2px solid #c40000;
    padding-bottom: 6px;
}

.sidebar-box img {
    width: 100%;
    border-radius: 6px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 8px;
}

.sidebar-list a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

.sidebar-list a:hover {
    color: #c40000;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 8px;
    font-weight: bold;
}

/* ===== MODERN FOOTER FOR 36KNOCKOUT ===== */
.site-footer {
    background: linear-gradient(145deg, #0f172a, #1e293b); /* deep blue gradient */
    color: #e5e7eb;
    padding: 50px 20px 25px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.2);
}

/* Footer Container Layout */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Footer Columns */
.footer-col h4 {
    color: #facc15; /* yellow highlight */
    font-size: 17px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Paragraphs */
.footer-col p {
    line-height: 1.7;
    margin: 5px 0;
    color: #d1d5db;
    font-size: 14px;
}

/* Quick Links - Compact Version */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin: 0;           /* Remove gap */
    line-height: 1.5;    /* Compact vertical spacing */
}

.footer-col ul li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;       /* full width clickable */
    padding: 2px 0;       /* tiny vertical padding for hover */
    position: relative;
}

.footer-col ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #facc15;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #facc15;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Editor / Publisher Section */
.footer-col strong {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(203, 213, 245, 0.3);
    margin-top: 35px;
    padding-top: 15px;
    font-size: 13px;
    color: #cbd5f5;
}

/* Responsive - Tablets & Mobile */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
        padding: 35px 15px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr; /* stack columns vertically */
        gap: 20px;
    }

    .footer-col h4 {
        margin-top: 10px;
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 14px;
    }

    .footer-col ul li a:hover::after {
        bottom: 0;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .site-footer {
        padding: 20px 10px 15px;
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }
}



/* STICKY HEADER */
.top-header {
    position: sticky;     /* stays on top while scrolling */
    top: 0;
    z-index: 1000;
    background: #c40000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* HEADER INNER */
.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO */
.logo img {
    height: 45px;
    width: auto;
}

/* TITLE */
.site-title h1 {
    margin: 0;
    font-size: 22px;
    color: #fff;
}

.site-title p {
    margin: 0;
    font-size: 12px;
    color: #ffecec;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 600px) {
    .logo img {
        height: 38px;
    }
    .site-title h1 {
        font-size: 18px;
    }
}
/* STICKY SERVICES BAR */
.sticky-services {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    overflow-x: auto;   /* horizontal scroll */
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-top: 2px solid #c40000;
    padding: 6px 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.sticky-services::-webkit-scrollbar {
    display: none;
}

/* SERVICE LINKS */
.sticky-services a {
    flex: 0 0 auto; /* do not shrink */
    width: 70px;
    margin: 0 6px;
    text-align: center;
    text-decoration: none;
    color: #111;
    animation: bounce 1.5s infinite alternate; /* bounce animation */
}

/* ICON */
.sticky-services img {
    width: 28px;
    height: 28px;
    margin-bottom: 3px;
    transition: transform 0.3s ease;
}

/* SCALE ON HOVER / TAP */
.sticky-services a:hover img,
.sticky-services a:active img {
    transform: scale(1.3);
}

/* TEXT */
.sticky-services span {
    font-size: 11px;
    transition: color 0.3s;
}

.sticky-services a:hover span,
.sticky-services a:active span {
    color: #c40000;
    font-weight: bold;
}

/* BOUNCE ANIMATION KEYFRAMES */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* MOBILE FLEX ADJUSTMENT */
@media (max-width: 768px) {
    .sticky-services a {
        animation: bounce 1.5s infinite alternate;
    }
}
