* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #120c08;
    color: #f4eee2;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #1f140e;
    border-bottom: 2px solid #8b2500;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff5722;
}

.navbar nav a {
    color: #f4eee2;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.btn-order {
    background-color: #ff5722;
    padding: 8px 16px;
    border-radius: 4px;
}

.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), #3e1f0e;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff7043;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.btn-primary {
    background-color: #ff5722;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.menu-section {
    padding: 60px 10%;
    text-align: center;
}

.menu-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff7043;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: #1f140e;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff5722;
    text-align: left;
}

.menu-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.price {
    color: #ffab91;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer {
    background-color: #0b0705;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #2d1a10;
}

.footer h3 {
    color: #ff7043;
    margin-bottom: 10px;
}
