/* style.css */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #442a1b; /* Dark brown, adjust as needed */
}

a {
    text-decoration: none;
    color: #442a1b;
}

.button {
    display: inline-block;
    background-color: #c6a98f; /* Light brown, adjust as needed */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #a88a70; /* Darker shade on hover */
}

/* Header Styles */
header {
    background-color: #fff;
    color: #442a1b;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

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

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #442a1b;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section Styles */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover; /* Replace with your image */
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-content img {
    width: 40%;
    border-radius: 10px;
}

.about-content p {
    width: 60%;
}

/* Menu Section Styles */
.menu {
    padding: 50px 0;
    background-color: #f9f9f9;
}

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

.menu-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Contact Section Styles */
.contact {
    padding: 50px 0;
    background-color: #fff;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

#form-message {
    margin-top: 10px;
    font-weight: bold;
}

/* Footer Styles */
footer {
    background-color: #442a1b;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img {
        width: 100%;
    }

    .about-content p {
        width: 100%;
    }
}