body{
font-family:Poppins,sans-serif;
margin:0;
background:#f7f7f7;
color:#222;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* NAV */

header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.logo-icon{
background:#b11226;
color:white;
padding:8px 10px;
border-radius:8px;
}

/* BUTTONS */

.btn-primary{
background:#b11226;
color:white;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
}

.btn-outline{
border:2px solid white;
padding:12px 20px;
border-radius:8px;
color:white;
text-decoration:none;
}

/* HERO */

.hero{
height:520px;
background:
linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
url("https://images.unsplash.com/photo-1504674900247-0877df9cc836");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-content h1{
font-size:48px;
margin-bottom:10px;
}

.hero-buttons{
margin-top:20px;
display:flex;
gap:15px;
justify-content:center;
}

/* SECTIONS */

.section{
padding:80px 0;
text-align:center;
}

.grey{
background:#f1f1f1;
}

/* RESTAURANTS */

.restaurant-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.restaurant-card{
background:white;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.05);
padding-bottom:20px;
}

.restaurant-img{
height:160px;
border-radius:15px 15px 0 0;
background-size:cover;
background-position:center;
}

.img1{
background-image:url("https://images.unsplash.com/photo-1568901346375-23c9450c58cd");
}

.img2{
background-image:url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092");
}

.img3{
background-image:url("https://images.unsplash.com/photo-1550547660-d9450f859349");
}

/* SERVICES */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.service-card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.05);
}

.icon{
font-size:40px;
}

/* DRIVER */

.driver-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.driver-card{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.05);
text-align:center;
}

/* DOWNLOAD */

.download{
background:#b11226;
color:white;
padding:80px 0;
text-align:center;
}

.download img{
height:60px;
margin-top:20px;
}

/* FOOTER */

footer{
background:#111;
color:white;
padding:40px 0;
}

.footer{
display:flex;
justify-content:space-between;
}