* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: #ff5722;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url("food.png") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
}

.btn {
    background: #4caf50;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Order Section */
.order-section {
    padding: 80px 20px;
    text-align: center;
    background: #f4f4f4;
}

.order-section h2 {
    margin-bottom: 20px;
}

form {
    max-width: 400px;
    margin: auto;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

button {
    width: 100%;
    padding: 12px;
    background: #ff5722;
    border: none;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #e64a19;
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    nav {
        flex-direction: column;
    }
}