*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f5f5f5;
    color:#222;
}

/* NAVBAR */

nav{
    width:100%;
    padding:18px 70px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

nav h2{
    color:#ff5200;
    font-size:32px;
    font-weight:800;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:25px;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#ff5200;
}

/* HERO SECTION */

.hero{
    height:85vh;
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    animation:fadeIn 2s ease;
}

.hero h1{
    font-size:65px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    padding:15px 35px;
    background:#ff5200;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

.hero-btn:hover{
    background:#e64a00;
    transform:scale(1.05);
}

/* SECTION */

section{
    padding:60px 50px;
}

section h1{
    font-size:42px;
    margin-bottom:40px;
    text-align:center;
    color:#222;
}

/* CARDS */

.food-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:0.4s;
    animation:slideUp 1s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card h3{
    font-size:25px;
    margin:10px 0;
}

.card p{
    color:#666;
    line-height:1.6;
}

.card h4{
    margin-top:15px;
    font-size:24px;
    color:#111;
}

/* TAGS */

.tag{
    display:inline-block;
    background:#ff5200;
    color:white;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
}

.drink-tag{
    background:#00b894;
}

/* BUTTONS */

.btn{
    display:block;
    margin-top:20px;
    text-align:center;
    background:#ff5200;
    color:white;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#e64a00;
}

.delete-btn{
    display:block;
    margin-top:15px;
    text-align:center;
    background:red;
    color:white;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:bold;
}

/* FORM */

.form-box{
    width:450px;
    background:white;
    margin:60px auto;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    animation:fadeIn 1.2s ease;
}

.form-box h2{
    text-align:center;
    margin-bottom:25px;
    color:#ff5200;
    font-size:34px;
}

.form-box input,
.form-box textarea,
.form-box select{
    width:100%;
    padding:14px;
    margin-top:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.form-box textarea{
    height:120px;
}

.form-box button{
    width:100%;
    padding:15px;
    margin-top:20px;
    border:none;
    background:#ff5200;
    color:white;
    font-size:17px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

.form-box button:hover{
    background:#e64a00;
}

/* TABLE */

table{
    width:92%;
    margin:40px auto;
    border-collapse:collapse;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

table th{
    background:#ff5200;
    color:white;
    padding:18px;
}

table td{
    padding:16px;
    text-align:center;
    border-bottom:1px solid #eee;
}

table tr:hover{
    background:#fff4ef;
}

/* ANIMATION */

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* CART */

.cart-box{
    width:80%;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #ddd;
}

.cart-item img{
    width:120px;
    height:100px;
    object-fit:cover;
    border-radius:12px;
}

.cart-item h3{
    font-size:24px;
}

.cart-item p{
    color:#555;
    font-size:18px;
}