body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center/cover;
}

.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
}

.cta {
    padding: 15px 30px;
    background: #ff5733;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta:hover {
    transform: scale(1.05);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    color: #ff5733;
    font-size: 2.5rem;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.menu-item h3 {
    margin: 10px 0;
    color: #333;
}

.menu-item p {
    color: #666;
}

.price {
    font-weight: 600;
    color: #ff5733;
}

.dietary {
    font-size: 0.9rem;
    color: #888;
}

.ar-button {
    background: #ff5733;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
    margin-top: 10px;
}

.ar-button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .cta { font-size: 1rem; padding: 10px 20px; }
    .menu-grid { grid-template-columns: 1fr; }
}