*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#1b0f0a;
color:white;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#120804;
padding:20px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav a{
color:white;
text-decoration:none;
}

.logo{
color:#f4b942;
}

/* HERO */

.hero{
height:90vh;
background:url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4") center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-size:55px;
}

.hero span{
color:#f4b942;
}

.btn{
background:#f4b942;
padding:12px 25px;
border:none;
cursor:pointer;
border-radius:5px;
}

/* HERO NEWS BAR */

.news-bar{
margin-top:20px;
font-size:20px;
height:30px;
overflow:hidden;
}

/* MENU */

.menu{
padding:80px 0;
text-align:center;
}

.menu-slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:20px;
}

.menu-slider::-webkit-scrollbar{
height:8px;
}

.menu-slider::-webkit-scrollbar-thumb{
background:#f4b942;
border-radius:10px;
}

.menu-card{
background:#120804;
border-radius:10px;
overflow:hidden;
min-width:250px;
}

.menu-card img{
width:100%;
height:200px;
object-fit:cover;
}

/* GALLERY */

.gallery{
padding:80px 0;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:10px;
}

/* RESERVATION */

.reservation{
padding:80px 0;
text-align:center;
}

.reservation-box{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:10px;
}

.reservation-box input{
padding:10px;
border:none;
border-radius:5px;
}

/* CONTACT */

.contact{
padding:60px 0;
text-align:center;
}

footer{
background:#120804;
padding:20px;
text-align:center;
}




/* HERO NEWS TICKER */

.news-bar{
width:100%;
overflow:hidden;
margin-top:20px;
}

.news-track{
display:inline-block;
white-space:nowrap;
animation:newsMove 15s linear infinite;
}

.news-track span{
margin-right:80px;
font-size:20px;
}

@keyframes newsMove{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}



/* NEWS TICKER */

.news-bar{
width:100%;
overflow:hidden;
margin-top:20px;
}

.news-track{
display:inline-block;
white-space:nowrap;
animation:newsMove 18s linear infinite;
}

.news-bar:hover .news-track{
animation-play-state:paused;
}

.news-track span{
margin-right:100px;
font-size:20px;
}

@keyframes newsMove{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}


/* MENU TRAIN SLIDER */

.menu-slider{
overflow:hidden;
width:100%;
margin-top:40px;
}

.menu-track{
display:flex;
gap:30px;
width:max-content;
animation:menuMove 25s linear infinite;
}

.menu-slider:hover .menu-track{
animation-play-state:paused;
}

@keyframes menuMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}