/*
Theme Name: A1 Flash News
Theme URI: https://a1flashnews.com
Author: A1 Flash News
Author URI: https://a1flashnews.com
Description: Premium Responsive News WordPress Theme
Version: 1.0
License: GPL v2 or later
Text Domain: a1flashnews
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* Header */

.site-header{
    background:#ffffff;
    border-bottom:1px solid #ddd;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
}


.site-title{
    font-size:32px;
    font-weight:800;
    color:#e60000;
}


/* Menu */

.main-menu ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.main-menu a{
    font-weight:600;
}


/* Breaking News */

.breaking-news{
    background:#e60000;
    color:white;
    padding:10px;
    overflow:hidden;
}

.breaking-title{
    font-weight:bold;
}


/* Content */

.content-area{
    padding:30px 0;
}


.news-card{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
}


.news-card img{
    width:100%;
    height:auto;
    border-radius:8px;
}


.news-card h2{
    margin-top:15px;
    font-size:24px;
}


/* Footer */

.site-footer{

    background:#111;
    color:white;
    padding:30px 0;
    margin-top:40px;
    text-align:center;

}


/* Mobile */

@media(max-width:768px){

.header-inner{
    flex-direction:column;
    gap:15px;
}


.main-menu ul{
    flex-direction:column;
    text-align:center;
}


.site-title{
    font-size:26px;
}

}