* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
}

/* Offset for anchor links to account for fixed header */
#home, #menu, #contact {
    scroll-margin-top: 90px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #d4a373;
}

.logo p {
    font-size: 1rem;
    font-style: italic;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a, header a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4a373;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    color: #fff;
}

.hero-content {
    max-width: 630px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4a373;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #d4a373;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b38b59;
}

/* Menu Preview */
.menu-preview {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.menu-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #4a3728;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item h3 {
    font-size: 1.5rem;
    color: #4a3728;
    margin-bottom: 0.5rem;
}

.menu-item p {
    font-size: 1rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4a3728;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    font-size: 1.1rem;
    color: #4a3728;
    text-align: left;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background: #d4a373;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Courier New', Courier, monospace;
}

button:hover {
    background: #b38b59;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 100%;
        max-width: 300px;
    }
}