body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.7;
    color: #444; 
    background-color: #f8f8f8; 
    text-align: center; 
}
html{
    scroll-behavior: smooth; 
}

header {
    background-color: #546e7a; 
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: left; 
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
}

nav {
    text-align: right; 
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li {
    margin-left: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ddd;
}

#hero {
    background-image: url('hero-image.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 10rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #795548; 
    color: white;
}

.btn:hover {
    background-color: #4e342e; 
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 4rem 0;
    color: #546e7a; 
}

#menu {
    padding: 4rem 2rem;
    background-color: #fff; 
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem;
    max-width: 1000px; 
    margin: 0 auto;
}

.menu-item {
    background-color: #f9f9f9; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.menu-icon {
    font-size: 3rem; 
    color: #795548; 
    margin-bottom: 1rem;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.menu-item .description {
    color: #777;
    margin-bottom: 1rem;
}

.menu-item .price {
    font-weight: 700;
    color: #795548;
}

#story {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1;
    text-align: left; 
}

.story-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

#contact {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.contact-details {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
}

.contact-details i {
    margin-right: 0.5rem;
    color: #795548;
}

.social-links {
    text-align: center;
}

.social-links a {
    display: inline-block;
    font-size: 2rem;
    color: #795548;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4e342e;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav {
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }

    nav li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image {
        margin-bottom: 2rem;
    }

    .story-text {
        text-align: center; 
    }
}