:root {
    --primary: #d32f2f;
    --dark: #222;
    --light: #f4f4f4;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--dark); }

.container { width: 100%; max-width: 1100px; margin: auto; padding: 0 15px; }

/* Sticky Header */
.sticky-header { 
    background: var(--white); 
    height: 70px; 
    display: flex; 
    align-items: center; 
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    z-index: 1000; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

nav { display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: nowrap; }

/* ✅ Logo style */
.logo { 
    font-weight: 700; 
    font-size: 1.1rem; 
    color: var(--primary); 
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links { display: flex; list-style: none; align-items: center; flex-wrap: nowrap; }
.nav-links li { margin: 0 10px; }
.nav-links a { text-decoration: none; color: var(--dark); font-size: 0.85rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

.btn-order { 
    background: var(--primary); 
    color: white !important; 
    padding: 8px 12px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-size: 0.8rem; 
    font-weight: bold; 
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-order:hover { background: #b71c1c; }

/* Hero Section */
.hero { 
    margin-top: 70px; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg') center/cover no-repeat; 
    height: 50vh; 
    display: flex; 
    align-items: center; 
    text-align: center; 
    color: white; 
}

.hero-content h1 { font-size: clamp(1.8rem, 8vw, 3rem); line-height: 1.2; margin-bottom: 10px; }
.hero-content p { font-size: 1.1rem; opacity: 0.95; }

.btn-primary { 
    background: var(--primary); 
    color: white; 
    padding: 12px 25px; 
    text-decoration: none; 
    border-radius: 5px; 
    display: inline-block; 
    margin-top: 15px;
    transition: background 0.2s;
}
.btn-primary:hover { background: #b71c1c; }

.section-title { text-align: center; margin: 40px 0 20px; font-size: 2rem; color: var(--dark); }

/* ✅ Menu banner style */
.menu-banner {
    margin: 0 auto 40px;
    text-align: center;
}
.menu-full-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* ✅ Sub-heading for items */
.sub-heading {
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 0 25px;
}

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; padding-bottom: 40px; }
.menu-item { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.08); transition: transform 0.2s; }
.menu-item:hover { transform: translateY(-3px); }
.menu-item img { width: 100%; height: 250px; object-fit: cover; }
.menu-item h3 { margin: 12px 15px 8px; color: var(--primary); font-size: 1.1rem; }
.menu-item p { margin: 0 15px 15px; font-size: 0.9rem; color: #555; }

.info-section { background: var(--light); padding: 50px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-section h3 { color: var(--primary); margin-bottom: 15px; }
.info-section p { margin: 5px 0; }

.btn-secondary { color: var(--primary); font-weight: bold; text-decoration: none; }
.btn-secondary:hover { text-decoration: underline; }

footer { text-align: center; padding: 30px; background: var(--dark); color: white; font-size: 0.85rem; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ✅ Mobile Optimisation — better than before */
@media (max-width: 600px) {
    .logo { display: none; }
    .nav-links li { margin: 0 6px; }
    .nav-links a { font-size: 0.75rem; }
    .btn-order { padding: 6px 8px; font-size: 0.7rem; }
    .hero { height: 45vh; }
    .hero-content p { font-size: 1rem; }
    .section-title { font-size: 1.6rem; }
    .info-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .menu-full-img { max-width: 100%; }
}
