html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.header-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: #8B4513;
    font-weight: bold;
    transition: color 0.3s;
    padding: 0.5rem;
}

nav a:hover {
    color: #D2691E;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sections */
section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #8B4513;
    padding-top: 20px;
}

/* About Section */
.about-content {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Menu Section */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-category {
    background-color: #f9f5f0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-category h3 {
    border-bottom: 2px solid #D2691E;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
    text-align: center;
}

.menu-item {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #D2691E;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item b {
    display: block;
    color: #5a3921;
}

.menu-item small {
    color: #7a5d48;
}

/* Product Showcase */
.product-showcase {
    margin: 3rem 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h2 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product {
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-desc {
    margin-top: 1rem;
}

.button {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.button:hover {
    background-color: #D2691E;
}

/* Footer */
footer {
    background-color: #8B4513;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

footer h3 {
    margin-bottom: 1rem;
    color: #f8e5cc;
}

footer a {
    color: #E5CEB4;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Info box */
.info-box {
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    color: #5a3921;
    background-color: #f8f0e5;
    border-radius: 8px;
    margin: 1.5rem auto;
    max-width: 800px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content h3 {
        font-size: 1.5rem;
    }

    nav {
        gap: 1rem;
    }

    .hero {
        height: 40vh;
    }

    .gallery img {
        max-width: 150px;
        height: 120px;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .products {
        gap: 1.5rem;
    }

    .product {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .header-content h3 {
        font-size: 1.4rem;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero {
        height: 30vh;
    }

    section h1 {
        font-size: 1.9rem;
    }

    .gallery {
        gap: 0.5rem;
    }

    .gallery img {
        max-width: 120px;
        height: 100px;
    }

    .product {
        max-width: 100%;
    }

    .menu-category {
        padding: 1rem;
    }
}