/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body{
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    line-height: 1.6;
}

/* ================= HEADER ================= */
header{
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8");
    background-size: cover;
    background-position: center;
}

/* NAVBAR */
.navbar{
    width: 100%;
    height: 80px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,.4);
    position: fixed;
    top: 0;
    z-index: 100;
}

.navbar img{
    height: 50px;
}

.nav-list{
    display: flex;
    gap: 40px;
}

.nav-list a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.nav-list a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: aquamarine;
    transition: .3s;
}

.nav-list a:hover::after{
    width: 100%;
}

/* SEARCH */
form{
    display: flex;
    gap: 10px;
}

form input{
    padding: 5px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
}

form button{
    padding: 5px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: aquamarine;
    color: #000;
    font-weight: bold;
}

/* ================= HERO ================= */
.hero{
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero-cont{
    max-width: 550px;
}

.new-menu{
    background: aquamarine;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-head{
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-p{
    opacity: .9;
    margin-bottom: 30px;
}

.menu{
    padding: 14px 30px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid aquamarine;
    color: aquamarine;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

.menu:hover{
    background: aquamarine;
    color: #000;
}

/* ================= MENU SECTION ================= */
.menu-section{
    padding: 100px 80px;
    background: #0b1c22;
}

.menu-top-text{
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.menu-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-itmes{
    background: rgba(255,255,255,.05);
    border-radius: 25px;
    padding: 25px;
    backdrop-filter: blur(8px);
    transition: .4s;
}

.menu-itmes:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.menu-itmes img{
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}

.item-head{
    font-size: 20px;
    margin-bottom: 10px;
}

.info{
    font-size: 14px;
    opacity: .85;
}

.menu-itme-button{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price{
    color: aquamarine;
    font-size: 24px;
}

.orde-btn{
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: aquamarine;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
}

.orde-btn:hover{
    transform: scale(1.05);
}

/* ================= ORDER ================= */
.order-section{
    padding: 100px 80px;
    background: linear-gradient(135deg, #203a43, #0f2027);
}

.order-top-text{
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.order-cont{
    max-width: 400px;
    margin: auto;
    background: rgba(255,255,255,.08);
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.order-cont h3{
    margin-bottom: 20px;
    font-size: 16px;
    opacity: .9;
}

.order-grad{
    margin-bottom: 15px;
}

.order-input{
    width: 100%;
    padding: 12px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
}

.orde-Btn{
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: aquamarine;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

/* ================= FOOTER ================= */
footer{
    padding: 30px;
    text-align: center;
    background: #000;
    opacity: .7;
}
