* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #ffffff;
    color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.logo { 
    font-size: 1.6rem; 
    font-weight: 900; 
    color: #e63946; 
    text-transform: uppercase;
}

.header-right { display: flex; align-items: center; gap: 30px; }

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 2px solid #eee;
    padding-right: 20px;
}

.phone-number { font-weight: 700; color: #1a1a1a; }
.phone-number i { color: #e63946; }

.social-icons a { color: #555; transition: 0.3s; font-size: 1.2rem; }
.social-icons a:hover { color: #e63946; transform: scale(1.2); }

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: #1a1a1a; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #e63946; }

/* Hero */
.hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1400&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    color: white;
}

.hero-content { max-width: 600px; }
.badge { background: #e63946; display: inline-block; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: bold; margin-bottom: 15px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn:hover { background: #c12a36; transform: translateY(-3px); }

/* Deals Banner */
.deals-banner {
    background: #1a1a1a;
    color: #ffd166;
    padding: 15px 0;
    text-align: center;
}
.deals-banner i { margin-right: 10px; color: #e63946; }

/* Menu Grid & Sections */
.menu-section { padding: 80px 10%; }
.sides-bg { background-color: #f1f1f1; } /* New: Background for sides section */

.section-title { text-align: center; margin-bottom: 50px; }
.underline { width: 60px; height: 4px; background: #e63946; margin: 10px auto; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid transparent;
}

.menu-item:hover { 
    transform: translateY(-10px); 
    border-color: #e63946;
}

.img-container { width: 100%; height: 250px; position: relative; }
.img-container img { width: 100%; height: 100%; object-fit: cover; }

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 2;
}

/* Updated: Improved description spacing for the larger menu */
.description { 
    padding: 20px 20px 15px; 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #333; 
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-btn {
    border: 2px solid #e63946;
    background: transparent;
    color: #e63946;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.order-btn:hover { 
    background: #e63946; 
    color: white; 
}

.order-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 900px) {
    .navbar { flex-direction: column; gap: 15px; }
    .contact-box { border: none; padding: 0; }
    .hero-content h1 { font-size: 2.8rem; text-align: center; }
    .hero { justify-content: center; text-align: center; }
}