*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Hind Madurai',sans-serif;
background:
linear-gradient(
to bottom,
#2b0000,
#5b1300
);
color:white;
overflow-x:hidden;
}

.navbar{
position:sticky;
top:0;
z-index:1000;
background:black;
border-bottom:1px solid gold;
}

.container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 25px;
}

.logo{
font-size:28px;
color:gold;
}

.nav{
display:flex;
gap:25px;
list-style:none;
}

.nav a{
color:white;
text-decoration:none;
font-weight:600;
}

.nav .active{
color:gold;
}

.menu-toggle{
display:none;
font-size:34px;
cursor:pointer;
}

.hero{
height:340px;
background:
linear-gradient(
rgba(0,0,0,0.6),
rgba(0,0,0,0.6)
),
url('../assets/news.jpeg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-overlay h1{
font-size:65px;
color:gold;
margin-bottom:15px;
}

.hero-overlay p{
font-size:24px;
}

.news-section{
padding:90px 20px;
}

.section-title{
text-align:center;
font-size:52px;
color:gold;
margin-bottom:50px;
}

.filter-wrapper{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:55px;
}

.filter-wrapper input,
.filter-wrapper select{
padding:
14px 20px;
border:none;
border-radius:40px;
font-size:16px;
outline:none;
}

.filter-wrapper button{
padding:
14px 25px;
border:none;
border-radius:40px;
background:gold;
color:black;
font-weight:700;
cursor:pointer;
}

.news-grid{
max-width:1450px;
margin:auto;
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));
gap:35px;
}

.news-card{
background:
rgba(255,255,255,0.06);
border-radius:30px;
overflow:hidden;
border:
1px solid rgba(255,215,0,0.2);
transition:0.3s;
}

.news-card:hover{
transform:translateY(-5px);
}

.news-img{
width:100%;
height:240px;
object-fit:cover;
}

.news-content{
padding:30px;
}

.news-date{
display:block;
margin-bottom:18px;
color:gold;
font-weight:600;
}

.news-content h3{
font-size:32px;
line-height:1.5;
margin-bottom:18px;
}

.news-content p{
font-size:17px;
line-height:1.9;
color:#f5e6c8;
margin-bottom:25px;
text-align:justify;
}

.read-more{
display:inline-block;
padding:
14px 28px;
background:gold;
color:black;
font-weight:bold;
border-radius:40px;
text-decoration:none;
}

.footer{
margin-top:80px;
background:
linear-gradient(
135deg,
#2a0000,
#5a1200,
#7a1f00
);
padding-top:60px;
}

.footer-container{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
padding:0 30px 40px;
}

.footer-box h2{
font-size:28px;
margin-bottom:20px;
color:gold;
}

.footer-box p{
margin-bottom:15px;
line-height:1.8;
}

.footer-box a{
display:block;
margin-bottom:12px;
color:#f5e6c8;
text-decoration:none;
}

.footer-bottom{
text-align:center;
padding:18px;
background:
rgba(0,0,0,0.2);
}

@media(max-width:768px){

.nav{
display:none;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:black;
padding:20px;
}

.nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.hero{
height:250px;
}

.hero-overlay h1{
font-size:38px;
}

.hero-overlay p{
font-size:18px;
}

.section-title{
font-size:34px;
}

.news-grid{
grid-template-columns:1fr;
}

.news-content{
padding:22px;
}

.news-content h3{
font-size:25px;
}

.news-content p{
font-size:15px;
}

.footer{
text-align:center;
}

}