*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{

background:#090909;
color:white;

}

header{

position:sticky;
top:0;

display:flex;
justify-content:space-between;
align-items:center;

padding:15px;

background:black;

z-index:1000;

}

.logo{

height:42px;

}

.menu{

font-size:30px;
cursor:pointer;

}

nav{

display:flex;
gap:20px;

}

nav a{

color:white;
text-decoration:none;
font-size:15px;

}

.hero{

position:relative;
height:340px;

overflow:hidden;

}

.hero img{

width:100%;
height:100%;
object-fit:cover;

}

.overlay{

position:absolute;

left:30px;
bottom:30px;

}

.overlay h1{

font-size:38px;

color:#d40000;

}

.overlay p{

margin-top:10px;
font-size:18px;

}

section{

margin-top:35px;

}

section h2{

padding:0 20px 15px;
font-size:24px;

}

.slider{

display:flex;

overflow-x:auto;

gap:15px;

padding:0 20px;

scrollbar-width:none;

}

.slider::-webkit-scrollbar{

display:none;

}

.slider img{

width:180px;

height:250px;

object-fit:cover;

border-radius:10px;

cursor:pointer;

transition:.35s;

}

.slider img:hover{

transform:scale(1.08);

}

#popup{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.95);

justify-content:center;

align-items:center;

z-index:5000;

}

#popup img{

max-width:90%;

max-height:90%;

border-radius:10px;

}

#close{

position:absolute;

right:30px;
top:20px;

font-size:45px;

cursor:pointer;

}

@media(max-width:768px){

header{

padding:15px;

}

nav{

gap:12px;

}

nav a{

font-size:13px;

}

.hero{

height:220px;

}

.overlay h1{

font-size:28px;

}

.overlay p{

font-size:15px;

}

.slider img{

width:140px;

height:190px;

}

}