*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background: whitesmoke;
background-size: cover;
background-position: center;

min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

/* ===== NAVBAR ===== */

.navigation{
position:fixed;
top:0;
left:0;
width:100%;
height:60px;

background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:150;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 25px;
}

/* ===== LEFT ===== */

.nav-left button{
font-size:24px;
background:none;
border:none;
cursor:pointer;
padding:8px 12px;
border-radius:8px;
}

.nav-left button:hover{
background:#f0f2f5;
}

/* ===== CENTER MENU ===== */

.nav-center ul{
display:flex;
align-items:center;
gap:30px;
list-style:none;
}

/* search box */

.nav-center input{
padding:6px 12px;
border-radius:20px;
border:1px solid #ccc;
outline:none;
font-size:14px;
transition:0.2s;
}

.nav-center input:focus{
border-color:#1877f2;
}

/* icon */

.nav-center a{
font-size:24px;
text-decoration:none;
padding:8px 12px;
border-radius:8px;
color:#000;
transition:0.2s;
}

.nav-center a:hover{
background:#f0f2f5;
}

/* ===== RIGHT MENU ===== */

.nav-right{
display:flex;
gap:20px;
}

.nav-right a{
font-size:16px;
text-decoration:none;
color:#000;
padding:8px 14px;
border-radius:8px;
transition:0.2s;
}

.nav-right a:last-child{
background:#84b6f7;
color:white;
font-weight:600;
}

.nav-right a:hover{
background:#f7f8fa;
}

/*===   Container   ===*/
.container{
width:100%;
max-width:100%;
margin-top: 50px;
}

.card{
background:linear-gradient(rgb(163, 193, 223), rgb(226, 226, 162), rgb(152, 219, 152));
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,0.2);
border-radius:24px;
padding:40px;
box-shadow:0 8px 32px rgba(0,0,0,0.2);
}

.header{
text-align:center;
margin-bottom:40px;
}

.header h1{
font-size:36px;
color:white;
margin-bottom:10px;
}

.header p{
color:rgba(255,255,255,0.8);
}

.food-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.food-item{
background:rgba(170, 72, 59, 0.1);
border-radius:16px;
padding:20px;
text-align:center;
transition:0.3s;
color:red;
border:1px solid rgba(255,255,255,0.2);
}

.food-item:hover{
transform:translateY(-5px);
background:rgba(184, 181, 181, 0.15);
}

.food-item img{
width:100%;
height:160px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

.food-item h3{
color:white;
margin-bottom:10px;
}

.food-item p{
color:rgba(255,255,255,0.8);
font-size:14px;
}

.btn{
margin-top:15px;
display:inline-block;
background:linear-gradient(135deg,#6366f1,#06b6d4);
padding:10px 18px;
border-radius:10px;
color:white;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.btn:hover{
transform:translateY(-2px);
}

.footer{
text-align:center;
margin-top:30px;
color:rgba(255,255,255,0.7);
font-size:14px;
}