* {
    padding: 0;
    margin: 0
}

/* lato font style */
.lato-thin {
    font-family: "Lato", sans-serif;
    font-style: normal;
}

.playfair-display-font {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Navbar container */
#nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: rgba(241, 240, 240, 0.9);
    z-index: 1000;
    

}

/* Logo */
.logo {
    color: red;
    font-size: 26px;
    font-weight: 700;
}

.nav-logo {
    color: black;
    font-weight: 900;
}

/* Hamburger menu icon - hidden by default */
.menu-icon {
    display: none;
    cursor: pointer;
   
}

/* Desktop nav-menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    font-weight: 600;
}
/* nav link click on*/
.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.nav-menu a.active {
    background: #c2c5cc; /* active bg */
    border-radius: 6px;
    color:black;
    font-weight:600;
}
.nav-list a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.nav-list a.active {
    background: #c2c5cc; 
    border-radius: 6px;
    color:black;
}

/* Mobile/Tablet nav-links */
.nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 6px;
    top: 45px;
    border-radius: 8px;
    padding: 20px;
    z-index: 100;
    background-color:rgb(178, 174, 174) !important;
}

.nav-links.active {
    display: block;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    font-size: 16px;
    color: white;
}



.search-input {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgb(81, 80, 80);
    background-color: rgba(167, 166, 166, 0.6);
    color: black;
    font-weight: 500;

}

.search-input::placeholder {
    color: black;
}

.search-input:focus {
    outline: none;
    border: 1px solid white;
}




/* banner most popular news section */
.most-popular-news {
    display: flex;
    max-width: 1440px;
    margin: 30px auto;
    padding: 0 40px;
    padding-bottom: 40px;
    gap: 30px;
}

.sports-img img {
    width: 550px;
    height: 100%;
    object-position: center;
}

#popular-news-description {
    font-size: 20px;
    margin: 20px 0;
}

.category-and-date {
    font-size: 18px;
    display: flex;
    gap: 16px;
    color: gray;
    font-weight: 800;
}

/* Featured news  section css style  */
.featured-container {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9
}

.news-title {

    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline;
}

.news-sub-title {
    font-size: 1.2rem;
    color: #555;
    margin-top: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;

}

/* news card container section */
#news-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

/* news card style */
.news-card {
    max-width: 380px;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Image */
.news-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.08);
}

/* Badge */
.news-badge {
    position: absolute;
    bottom: 15px;
    left: 0;
    background: #ef5350;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
}

/* Body */
.news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.newsTitle {
    font-size: 20px;
    margin-bottom: 6px;
    color: #1f2937;
    text-align: left;
}

.news-subtitle {
    font-size: 16px;
    color: #ef5350;
    margin-bottom: 12px;
    text-align: left;
}

.news-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: left;
    flex: 1;

}


.read-more-btn {
    background: #26a69a;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.read-more-btn:hover {
    background: #1f8f85;
}

.like-btn {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #6b7280;
}

.like-btn:hover {
    color: #ef5350;
}

/* news read button */
.news-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #9ca3af;
}

/* most popular news section */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px;

}

#popular-news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;

}

/* popular news container sports and home page style*/
#popular-news-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}


.popular-news-card {
    cursor: pointer;
}

.popular-news-card img {
    border-radius: 8px;
    margin-bottom: 6px;
    height: 150px;
    width: 100%;
    object-position: cover;
}

#news-card-2 {
    grid-column: span 2;
    grid-row: span 2;
}

#card-body-2 {
    position: absolute;
    bottom: 30px;
    left: 20px;

}

#popular-news-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: transform 0.4s ease;
    overflow: hidden;

}

#popular-news-img:hover {
    transform: scale(1.1);
    border: 2px solid red;

}

.popular-news-card-2 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.popular-news-card-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
    border-radius: 8px;
}

#card-body-2 {
    color: white;
    z-index: 2;
}

.card-body-title {
    font-size: 30px;
}

.card-body-sub-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.read-btn {
    font-size: 16px;
    margin-top: 20px;
    color: rgb(10, 109, 239);
}

.categroy-and-date {
    font-weight: 600;
    color: rgb(88, 85, 85)
}

.card-body h2 {
    font-size: 18px;
}

.card-body p {
    font-size: 15px;
    margin-bottom: 10px;
}

/* sports news page */
#sports-news-container {
    background-color: rgb(252, 250, 250);
    padding: 30px 0
}

/* star multimedia section in sports page */
.star-multimedia-section {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header */
.star-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Layout */
.star-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Video */
.video-box {
    flex: 1.2;
    border-radius: 8px;
    overflow: hidden;
}

.video-box iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Text */
.video-details {
    flex: 1;
}

.watch-label {
    color: #dc2626;
    font-weight: 600;
    font-size: 17px;
}

.video-details h2 {
    margin: 10px 0 14px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    cursor: pointer;
}

.video-details h2:hover {
    color: #dc2626;
}

.video-details p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* Latest National Updates section */
.national-latest-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px
}

.latest-news-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.latest-news-card {
    cursor: pointer;
    background-color: white;
}

.latest-news-card img {
    border-radius: 4px;
    margin-bottom: 6px;
    height: 200px;
    width: 100%;
    object-position: cover;
}
/* footer section design style */
.site-footer {
    background: rgba(241, 240, 240, 0.95);
    color: #1f2937;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 220px;
}

/* Logo */
.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    color: #111827;
    margin-bottom: 16px;
    position: relative;
}


/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
    padding-left: 6px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #cbd5f5;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 8px 16px;
    background: #2563eb;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #1e40af;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a.facebook:hover { background: #1877f2; color: #fff; }
.footer-social a.twitter:hover { background: #1da1f2; color: #fff; }
.footer-social a.youtube:hover { background: #ff0000; color: #fff; }

.footer-social a:hover { transform: translateY(-4px); }

/* Bottom */
.footer-bottom {
    background: #e5e7eb;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    color: #4b5563;
    margin-top: 20px;
}




