*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:linear-gradient(135deg,#ff8c00,#ff5e00,#ffb347);
}

/* ===== HEADER ===== */
.main-header{
    padding:40px 20px;
    text-align:center;
    background:linear-gradient(135deg,#ff8c00,#ff5e00,#ffb347);
}

/* FRAME LOGO */
.logo-frame{
    display:inline-block;
    padding:20px 40px;
    border:6px solid gold;
    border-radius:15px;
    background:rgba(255,255,255,0.1);
}

.fire-text{
    font-size:38px;
    color:white;
    animation:fire 1.2s infinite alternate;
}

@keyframes fire{
    0%{text-shadow:0 0 8px orange,0 0 15px red;}
    100%{text-shadow:0 0 25px yellow,0 0 45px red;}
}

/* ===== NAVIGATION ===== */
.nav-tabs{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.nav-tabs button{
    background:linear-gradient(145deg,#ffa726,#ff6f00);
    border:none;
    padding:12px 25px;
    border-radius:25px;
    font-weight:bold;
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.nav-tabs button:hover{
    transform:scale(1.05);
}

/* ===== SECTION ===== */
section{
    width:90%;
    max-width:1000px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ===== MENU ===== */
.menu-container{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.menu-card{
    width:260px;
    background:#fff;
    border-radius:15px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    text-align:center;
}

.menu-card img{
    width:100%;
    border-radius:10px;
}

button{
    background:#ff5e00;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
}

/* ===== CART ===== */
.cart-item{
    background:#f5f5f5;
    margin:10px 0;
    padding:10px;
    border-radius:10px;
}

.qty-btn{
    padding:5px 10px;
    background:orange;
    border:none;
}

.delete-btn{
    background:red;
    color:white;
    padding:5px 10px;
    border:none;
}

textarea{
    width:100%;
    height:80px;
    border-radius:8px;
    padding:10px;
    margin-top:10px;
}

/* ===== MODAL ===== */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
}

.modal-content{
    background:white;
    width:300px;
    padding:20px;
    border-radius:15px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .menu-container{
        flex-direction:column;
        align-items:center;
    }

    .fire-text{
        font-size:28px;
    }
}

.footer{
    background:#ffffff;
    padding:30px 20px;
    text-align:center;
    border-top:1px solid #eee;
    margin-top:30px;
}

.footer-content{
    max-width:500px;
    margin:auto;
}

.footer p{
    margin:6px 0;
    font-size:14px;
    color:#555;
}

.social{
    margin-top:12px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.social a{
    text-decoration:none;
    background:#ff5722;
    color:white;
    padding:8px 15px;
    border-radius:20px;
    font-size:13px;
    transition:0.3s;
}

.social a:hover{
    background:#e64a19;
}

.social a{
    background:white;
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

.social a:hover{
    transform:scale(1.1);
}

.social a img{
    width:28px;
    height:28px;
}
