:root {
    --charcoal: #2d3436;
    --orange: #e17055;
    --dark-orange: #d35400;
    --brown: #634c41;
    --cream: #f1f2f6;
    --white: #ffffff;
    
    --font-logo: 'Lobster', cursive;
    --font-body: 'Roboto Slab', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--cream);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.kebab-header { padding: 20px 0; background-color: rgba(45, 52, 54, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--orange); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-logo); font-size: 2rem; color: var(--white); display: flex; flex-direction: column; line-height: 1; }
.logo .orange { color: var(--orange); }
.sub-logo { font-family: var(--font-body); font-size: 0.7rem; color: #aaa; letter-spacing: 3px; margin-top: 5px; text-transform: uppercase; }

.kebab-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.kebab-nav a { font-weight: 700; color: var(--cream); font-size: 1rem; text-transform: uppercase; }
.kebab-nav a:hover, .kebab-nav a.active { color: var(--orange); }

.btn-fire { background-color: var(--orange); color: var(--white) !important; padding: 10px 25px; border-radius: 5px; font-weight: bold; }
.btn-fire:hover { background-color: var(--dark-orange); transform: scale(1.05); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--brown); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 2px solid var(--orange); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; border: none; background: none; color: var(--white); cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px dashed var(--orange); color: var(--white); font-weight: bold; }

/* Hero */
.hero-kebab {
    height: 700px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(45, 52, 54, 1)); display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { max-width: 800px; padding: 20px; }
.taste-tag { background-color: var(--orange); color: var(--white); padding: 5px 15px; font-weight: bold; text-transform: uppercase; display: inline-block; margin-bottom: 20px; transform: rotate(-2deg); }
.hero-content h1 { font-family: var(--font-logo); font-size: 4rem; margin-bottom: 20px; color: var(--white); text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; color: #ddd; }

.hero-btns a { margin: 0 10px; padding: 15px 30px; border-radius: 5px; font-weight: bold; display: inline-block; text-transform: uppercase; }
.btn-primary { background-color: var(--orange); color: var(--white); }
.btn-primary:hover { background-color: var(--dark-orange); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--charcoal); }

/* Menu Grid */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-family: var(--font-logo); font-size: 3rem; color: var(--orange); margin-bottom: 10px; }
.fire-line { width: 100px; height: 4px; background: linear-gradient(to right, var(--orange), yellow); margin: 0 auto; border-radius: 2px; }

.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.food-card { background-color: #384042; border-radius: 10px; overflow: hidden; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.food-card:hover { transform: translateY(-10px); }
.food-img { height: 250px; overflow: hidden; position: relative; }
.food-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.food-card:hover img { transform: scale(1.1); }
.price { position: absolute; bottom: 10px; right: 10px; background-color: var(--orange); color: var(--white); padding: 5px 15px; font-weight: bold; border-radius: 20px; }
.food-info { padding: 25px; text-align: center; }
.food-info h3 { font-family: var(--font-logo); font-size: 1.5rem; margin-bottom: 10px; color: var(--cream); }
.food-info p { font-size: 0.9rem; color: #ccc; margin-bottom: 20px; }
.order-btn { background: transparent; border: 2px solid var(--orange); color: var(--orange); padding: 8px 20px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.order-btn:hover { background-color: var(--orange); color: var(--white); }

/* About */
.page-banner { background-color: var(--brown); padding: 80px 0; text-align: center; border-bottom: 5px solid var(--orange); }
.page-banner h1 { font-family: var(--font-logo); font-size: 3.5rem; color: var(--white); }

.chef-story { display: flex; gap: 60px; align-items: center; }
.text-col { flex: 1; }
.text-col h2 { font-size: 2rem; color: var(--orange); margin-bottom: 20px; font-weight: bold; }
.orange-divider { width: 60px; height: 4px; background-color: var(--orange); margin-bottom: 30px; }
.kitchen-rules { list-style: none; margin-top: 30px; }
.kitchen-rules li { font-size: 1.1rem; margin-bottom: 15px; font-weight: bold; }
.img-col { flex: 1; }
.img-col img { width: 100%; border-radius: 10px; border: 5px solid var(--orange); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-plate { background-color: var(--cream); color: var(--charcoal); padding: 40px; border-radius: 50% 50% 5px 5px; text-align: center; border-top: 5px solid var(--orange); }
.rating { color: var(--orange); font-size: 1.5rem; margin-bottom: 10px; }
.review-plate h3 { font-family: var(--font-logo); margin-bottom: 15px; }
.judge { font-weight: bold; color: var(--brown); display: block; margin-top: 20px; }

/* Contact Form */
.reservation-box { display: flex; background-color: var(--brown); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.info-side { flex: 1; padding: 60px; background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); }
.info-side h2 { font-family: var(--font-logo); color: var(--orange); font-size: 2.5rem; margin-bottom: 20px; }
.contact-details { margin-top: 40px; font-size: 1.1rem; }
.contact-details p { margin-bottom: 10px; }

.grill-form { flex: 1.5; padding: 60px; background-color: #3e322b; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; color: var(--orange); font-weight: bold; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; background-color: var(--charcoal); border: 1px solid #555; color: var(--white); font-family: var(--font-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); outline: none; }
.submit-btn { width: 100%; background-color: var(--orange); color: var(--white); border: none; padding: 15px; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 1.1rem; }
.submit-btn:hover { background-color: var(--dark-orange); }

/* Legal */
.allergen-content { max-width: 800px; margin: 0 auto; text-align: center; }
.allergen-content h1 { font-family: var(--font-logo); color: var(--orange); margin-bottom: 20px; }
.allergen-content h3 { color: var(--white); margin-top: 40px; margin-bottom: 10px; }

/* Footer */
.kebab-footer { background-color: #1e2223; padding: 60px 0; text-align: center; margin-top: auto; border-top: 5px solid var(--orange); }
.f-brand { font-family: var(--font-logo); font-size: 2.5rem; color: var(--white); }
.f-sub { color: var(--orange); font-weight: bold; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 2px; }
.copyright { color: #777; font-size: 0.8rem; }

@media (max-width: 900px) {
    .kebab-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .food-grid, .chef-story, .reviews-grid, .reservation-box { grid-template-columns: 1fr; flex-direction: column; }
    .info-side, .grill-form { padding: 30px; }
}