/* Resetting some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial, sans-serif';
    color: #8B4513; /* Rich Brown */
    background-color: #FFF5E6; /* Creamy White */
}

header {
    background-color: #FFD700; /* Buttery Yellow */
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #8B4513; /* Rich Brown */
    font-weight: bold;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #8B4513; /* Rich Brown */
    margin: 5px;
}

.hero {
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1511018556340-d16986a1c194?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover; /* Add your image path */
    text-align: center;
    color: #FFF5E6; /* Creamy White */
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.btn {
    background-color: #8B4513; /* Rich Brown */
    color: #FFF5E6; /* Creamy White */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #A0522D; /* Darker shade of brown */
}

.about {
    background-color: #FFF5E6; /* Creamy White */
    color: #8B4513; /* Rich Brown */
    padding: 60px 20px;
    text-align: center;
}

.about .container {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #FFD700; /* Buttery Yellow */
    }

    .nav-links li {
        text-align: center;
        margin: 15px 0;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
    }
}

.menu {
    background-color: #FFF5E6; /* Creamy White */
    color: #8B4513; /* Rich Brown */
    padding: 60px 20px;
    text-align: center;
}

.menu .container {
    max-width: 800px;
    margin: 0 auto;
}

.menu h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.menu-item {
    margin-bottom: 30px;
}

.menu-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.menu-item .description {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.menu-item .price {
    font-size: 1.2em;
    font-weight: bold;
}

.menu {
    background-color: #FFF5E6; /* Creamy White */
    color: #8B4513; /* Rich Brown */
    padding: 60px 20px;
    text-align: center;
}

.menu .container {
    max-width: 800px;
    margin: 0 auto;
}

.menu h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.menu-item {
    margin-bottom: 30px;
}

.menu-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.menu-item .description {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.menu-item .price {
    font-size: 1.2em;
    font-weight: bold;
}
.gallery {
    background-color: #FFF5E6; /* Creamy White */
    color: #8B4513; /* Rich Brown */
    padding: 60px 20px;
    text-align: center;
}

.gallery .container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

.contact {
    background-color: #FFF5E6; /* Creamy White */
    color: #8B4513; /* Rich Brown */
    padding: 60px 20px;
    text-align: center;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact form {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.contact .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact .form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact .form-group input,
.contact .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact .btn {
    background-color: #FFD700; /* Buttery Yellow */
    color: #8B4513; /* Rich Brown */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact .btn:hover {
    background-color: #FFC107; /* Darker Yellow */
}

.contact .contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section animations */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}
