/* Resetting margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e9c46a;
}

.order-btn {
    background-color: #e9c46a;
    color: #333;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background-color: #fff;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color:peru;
}

.hero-content p {
    margin: 1rem 0;
    font-size: 1.5rem;
    color:peru;
}

.cta-buttons {
    margin-top: 1.5rem;
}

.cta-buttons .btn {
    background-color: #e9c46a;
    color: #333;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: background 0.3s ease;
    border-radius: 25px;
}

.cta-buttons .btn:hover {
    background-color: #fff;
}

/* Featured Dishes Section */
#featured-dishes {
    background-color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

#featured-dishes h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #333;
}

.dish-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.dish-item {
    width: 30%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.dish-item:hover {
    transform: scale(1.05);
}

.dish-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-info {
    background-color: #fff;
    padding: 1rem;
    text-align: center;
}

/* About Us Section */
#about {
    background-color: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Reservation Section */
#reservations {
    background-color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

#reservations h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #333;
}

#reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

#reservation-form input, #reservation-form button {
    padding: 0.8rem;
    border: 2px solid #333;
    border-radius: 10px;
}

#reservation-form button {
    background-color: #e9c46a;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

#reservation-form button:hover {
    background-color: #fff;
}

/* Contact Section */
#contact {
    background-color: #333;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

#contact h2 {
    margin-bottom: 1
}

.dish-item {
    width: 100%;
}

.cta-buttons .btn {
    margin-bottom: 1rem;
}
.logo img {
    width: 100px;
    height: 100px;
}
