* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #eeea0c;
    color: rgb(26, 24, 24);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    width: 75px;
    height: 100px;
    border-radius: none;
}

.header-text {
    text-align: center;
}

.hero {
    background-color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.about, .menu, .contact {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about {
    background-color: #fff;
}

.menu {
    background-color: #f9f9f9;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.item-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.item h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: bold;
    color: #D2691E;
    font-size: 1.1rem;
}

.contact {
    background-color: #087724;
    color: white;
    text-align: center;
}

footer {
    background-color: #a80202;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.footer-link {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .header-link {
        flex-direction: column;
        text-align: center;
    }
    
    .header-text {
        text-align: center;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
}
