*{
margin:0;
padding:0;
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
display:block;
}

body{
font-family:Arial, sans-serif;
background:#f4f4f4;
}

/* HEADER */

.main-header{

background:#fff;
position:sticky;
top:0;
z-index:1000;

}

.top-bar{

background:#d60000;
color:#fff;
padding:8px;
text-align:center;
font-size:14px;

}

.nav-wrapper{

display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
padding:15px 5%;
gap:15px;

}

.logo a{

font-size:24px;
font-weight:bold;
text-decoration:none;
color:#000;

}

/* NAV */

nav{

display:flex;
gap:20px;
flex-wrap:wrap;

}

nav a{

text-decoration:none;
color:#000;
font-weight:600;

}

/* SEARCH */

.search-form{

flex:1;
min-width:200px;
max-width:300px;

}

.search-form input{

width:100%;
padding:8px;
border:1px solid #ccc;

}

/* MENU BUTTON */

.menu-toggle{

display:none;
font-size:26px;
border:none;
background:none;
cursor:pointer;

}

/* CONTAINER */

.container{

width:95%;
max-width:1200px;
margin:auto;

}

/* FOOTER */

.site-footer{

background:#111;
color:#fff;
padding:40px 5%;
margin-top:40px;

}

.footer-content{

display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;

}

.footer-column{

flex:1;
min-width:200px;

}

.footer-column ul{

list-style:none;

}

.footer-column li{

margin-bottom:8px;

}

.footer-bottom{

text-align:center;
margin-top:20px;
font-size:14px;

}

/* MOBILE */

@media(max-width:900px){

.menu-toggle{

display:block;

}

nav{

display:none;
width:100%;
flex-direction:column;
background:#fff;
padding:10px;

}

nav.active{

display:flex;

}

.search-form{

width:100%;
max-width:100%;

}

.nav-wrapper{

flex-direction:row;
align-items:center;

}

}

/* SMALL MOBILE */

@media(max-width:600px){

.logo a{

font-size:20px;

}

.top-bar{

font-size:12px;

}

.footer-content{

flex-direction:column;

}

}


/* HERO IMAGE CONTAINER */

.featured-hero,
.single-hero{
	position:relative;
	overflow:hidden;
	width:100%;
	max-width:850px;
	margin:0 auto;
}

.featured-hero img,
.single-hero img{
width:100%;
height:auto;
display:block;
}

/* TITLE OVERLAY */

.overlay-title{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(
to top,
rgba(0,0,0,0.85),
rgba(0,0,0,0.5),
rgba(0,0,0,0)
);
color:#fff;
}

.overlay-title h1{
margin:0;
font-size:28px;
}

.overlay-title a{
color:#fff;
text-decoration:none;
}

/* SINGLE CONTENT */

.single-content{
background:#fff;
padding:30px;
margin-top:20px;
line-height:1.6;
}

/* RESPONSIVE TITLE SIZE */

@media(max-width:900px){
.featured-hero,
.single-hero,
.single-post{
max-width:100%;
}

.overlay-title h1{
font-size:22px;
}

}

@media(max-width:600px){

.overlay-title{
padding:15px;
}

.overlay-title h1{
font-size:18px;
}

}
