/*
Theme Name: Movie Database
Author: SpecBits
Version: 1.0
*/

*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:Arial, sans-serif;
background:#f5f5f5;
}

.site-header{
background:#111;
padding:15px;
}

.nav{
max-width:1200px;
margin:auto;
}

.nav a{
color:white;
text-decoration:none;
margin-right:20px;
font-size:16px;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
gap:20px;
}

.card{
background:white;
border-radius:8px;
overflow:hidden;
text-decoration:none;
color:black;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
transition:0.2s;
}

.card:hover{
transform:translateY(-4px);
}

.card img{
width:100%;
display:block;
}

.card h3{
font-size:14px;
padding:8px 10px 0;
}

.card span{
font-size:12px;
color:#666;
padding:0 10px 10px;
display:block;
}

.year-filter{
margin-bottom:20px;
}

.year-filter a{
display:inline-block;
margin:4px;
padding:6px 10px;
background:#ddd;
border-radius:4px;
text-decoration:none;
color:black;
font-size:13px;
}

.pagination{
margin-top:30px;
text-align:center;
}

.pagination a{
display:inline-block;
margin:3px;
padding:8px 12px;
background:#111;
color:white;
border-radius:4px;
text-decoration:none;
}

.single{
display:flex;
flex-wrap:wrap;
gap:30px;
background:white;
padding:20px;
border-radius:10px;
}

.single img{
width:260px;
border-radius:8px;
}

.single h1{
margin-bottom:10px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

@media(max-width:768px){

.grid{
grid-template-columns:repeat(2,1fr);
}

.single{
flex-direction:column;
align-items:center;
}

.single img{
width:200px;
}

}