* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f4f0;
}

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    color: #2c2c2c;
}

.logo span {
    color: #8b5a2b;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b5a2b;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Space Mono', monospace;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #8b5a2b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #6b4423;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem;
    margin: 50px 0 30px;
    color: #2c2c2c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #8b5a2b;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

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

.menu-item h3 {
    font-family: 'Space Mono', monospace;
    padding: 20px 15px 10px;
    color: #2c2c2c;
}

.menu-item p {
    padding: 0 15px 20px;
    color: #666;
}

.price {
    display: block;
    font-weight: 700;
    font-size: 1.3rem;
    color: #8b5a2b;
    padding: 0 15px 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin: 0 0 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.features i {
    color: #8b5a2b;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: #8b5a2b;
    margin-right: 10px;
    width: 20px;
}

.contact-form h3 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5a2b;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.footer-logo span {
    color: #d4a76a;
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a76a;
}

.social-links {
    display: flex;
    justify-content: flex-end;
}

.social-links a {
    color: #fff;
    margin-left: 20px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4a76a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
}

.footer-bottom i {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        transition: 0.3s;
        padding-top: 50px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for better visuals */
img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: 'Space Mono', monospace;
    color: #2c2c2c;
}

p {
    color: #555;
}

/* Animation for form submission */
.form-success {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

.form-error {
    background-color: #f44336;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Button focus style */
.btn-primary:focus {
    outline: 2px solid #d4a76a;
    outline-offset: 2px;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid {
    border-color: #f44336;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #4CAF50;
}