body {
    margin: 0;
    font-family: Arial;
    background: #111;
    color: white;
}

.header {
    background: linear-gradient(90deg, orange, red);
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.container {
    width: 90%;
    margin: auto;
    padding: 20px;
}

.card {
    background: #1c1c1c;
    padding: 15px;
    margin: 15px;
    border-radius: 10px;
    border: 2px solid green;
}

button {
    background: orange;
    border: none;
    padding: 10px 15px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: red;
    color: white;
}

input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: #000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: orange;
}

a {
    text-decoration: none;
}

.btn {
    background: linear-gradient(45deg, orange, red);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-outline {
    border: 2px solid green;
    padding: 8px 18px;
    border-radius: 30px;
    color: green;
    margin-right: 10px;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background: radial-gradient(circle at top right, #1a1a1a, #000);
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 50px;
    background: linear-gradient(45deg, orange, red);
    -webkit-background-clip: text;
    color: transparent;
}

.btn-large {
    display: inline-block;
    margin-top: 20px;
    background: green;
    padding: 15px 30px;
    border-radius: 30px;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.btn-large:hover {
    background: orange;
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    width: 40%;
}

.main-food {
    width: 100%;
    animation: floatMain 3s ease-in-out infinite;
}

@keyframes floatMain {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* FLOATING INGREDIENTS */
.float {
    position: absolute;
    width: 70px;
    animation: float 4s infinite ease-in-out;
}

.i1 { top: -20px; left: -30px; }
.i2 { bottom: -20px; right: -30px; }
.i3 { top: 50%; right: -50px; }

@keyframes float {
    0%,100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 10%;
}

.feature-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid green;
    width: 25%;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: orange;
}


.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    padding: 50px 10%;
}

.menu-card {
    background: #111;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid #222;
}

.menu-card img {
    width: 100%;
    border-radius: 15px;
}

.menu-card:hover {
    transform: scale(1.05);
    border-color: orange;
}

.price {
    color: green;
    font-weight: bold;
    display: block;
    margin: 10px 0;
}


/* Fade animation */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions */
.float {
    transition: transform 0.5s ease, opacity 0.5s ease;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


.cart-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.cart-count {
    background: red;
    padding: 4px 9px;
    border-radius: 20px;
    font-size: 13px;
    color: white;
}





/* 🔥 Make total POP */
.cart-total {
    font-size: 16px;
    font-weight: 900;
    color: yellow;        /* Change to white if you prefer */
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

/* Optional hover effect */
.cart-icon:hover .cart-total {
    color: white;
    text-shadow: 0 0 12px rgba(255,255,255,0.9);
}



.cart-total.animate {
    animation: pulse 0.4s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}




.cart-drawer {
    position: fixed;
    right: -400px;
    top: 0;
    width: 350px;
    height: 100%;
    background: #111;
    padding: 20px;
    transition: 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    border-left: 3px solid orange;
}

.cart-drawer.open {
    right: 0;
}

.drawer-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.drawer-total {
    font-weight: bold;
    margin-top: 20px;
    color: green;
}


@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image {
        width: 80%;
        margin-top: 30px;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        width: 100%;
    }

    .menu-grid {
        padding: 20px;
    }

    .cart-drawer {
        width: 100%;
    }
}



.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
}

.empty-box {
    background: #1f2937;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #facc15;
    color: black;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
}

.cart-card {
    background: #1f2937;
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-badge.pending {
    background: orange;
}

.status-badge.paid {
    background: #22c55e;
}

.order-items {
    list-style: none;
    padding: 0;
}

.order-items li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}


   .container {
            max-width:900px;
            margin:40px auto;
            padding:20px;
        }

        .order-card {
            background:#1e293b;
            padding:20px;
            border-radius:12px;
            margin-bottom:20px;
            box-shadow:0 5px 15px rgba(0,0,0,0.3);
        }

        .order-header {
            display:flex;
            justify-content:space-between;
            align-items:center;
        }

        .status {
            padding:5px 12px;
            border-radius:20px;
            font-size:12px;
        }

        .pending { background:orange; }
        .paid { background:#22c55e; }

        ul {
            list-style:none;
            padding:0;
        }

        ul li {
            display:flex;
            justify-content:space-between;
            padding:6px 0;
        }

        .empty-box {
            background:#1e293b;
            padding:40px;
            border-radius:12px;
            text-align:center;
        }

        @media(max-width:768px){
            .navbar {
                flex-direction:column;
                align-items:flex-start;
            }
            .nav-right {
                margin-top:10px;
            }
        }