*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat',sans-serif;
background:#fff;
color:#222;
line-height:1.8;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:999;
border-bottom:1px solid #eee;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo img{
height:70px;
}

.navbar ul{
display:flex;
list-style:none;
gap:40px;
}

.navbar a{
text-decoration:none;
color:#000;
font-weight:600;
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:#fff;
}

.hero h1{
font-size:5rem;
font-weight:800;
margin:20px 0;
}

.hero p{
max-width:700px;
margin:auto;
font-size:1.2rem;
}

.btn{
display:inline-block;
margin-top:30px;
padding:15px 40px;
background:#000;
color:#fff;
text-decoration:none;
transition:.4s;
}

.btn:hover{
transform:translateY(-5px);
}

.artist-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.artist-card{
border:1px solid #eee;
overflow:hidden;
transition:.4s;
}

.artist-card:hover{
transform:translateY(-10px);
}

.artist-card img{
width:100%;
height:350px;
object-fit:cover;
}

.restaurant-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
padding:100px 0;
}

.restaurant-content img{
width:100%;
}