/*
Theme Name: MovieGuide Theme
Author: Jack
Version: 1.0
*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#0f0f0f;
color:#fff;
line-height:1.6;
}

a{
text-decoration:none;
color:white;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

header{
background:#111;
padding:20px 0;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #222;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:bold;
color:#f5c518;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a:hover{
color:#f5c518;
}

.hero{
height:85vh;
background:url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=2070') center/cover;
display:flex;
align-items:center;
position:relative;
}

.hero::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
}

.hero-content{
position:relative;
z-index:2;
max-width:650px;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
color:#ddd;
}

.btn{
display:inline-block;
padding:14px 28px;
background:#f5c518;
color:#000;
font-weight:bold;
border-radius:5px;
transition:0.3s;
}

.btn:hover{
opacity:0.8;
}

.section{
padding:70px 0;
}

.section-title{
font-size:36px;
margin-bottom:40px;
color:#f5c518;
}

.movies-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.movie-card{
background:#1b1b1b;
border-radius:10px;
overflow:hidden;
transition:0.3s;
}

.movie-card:hover{
transform:translateY(-5px);
}

.movie-card img{
width:100%;
height:320px;
object-fit:cover;
}

.movie-info{
padding:20px;
}

.movie-info h3{
margin-bottom:10px;
}

.platforms{
margin-top:10px;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.platform{
background:#333;
padding:6px 10px;
border-radius:5px;
font-size:13px;
}

footer{
background:#111;
padding:50px 0;
margin-top:50px;
border-top:1px solid #222;
}

.footer-content{
text-align:center;
color:#aaa;
}

.disclaimer{
margin-top:20px;
font-size:14px;
color:#777;
max-width:900px;
margin-inline:auto;
}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.nav-links{
display:none;
}

.hero{
height:70vh;
}

}