/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav .nav-links li a:hover {
    color: #f4b400;
}

/* Hero */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background-color: #f4b400;
    color: #333;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.hero .btn:hover {
    background-color: #e09c00;
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

.about, .contact {
    background-color: #f9f9f9;
}

/* Menu */
.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.menu-card {
    background-color: #fff;
    padding: 1rem;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
   
    width: 100%;          /* Fill the card width */
    height: 180px;        /* Fixed height */
    object-fit: cover;    /* Crop image nicely to fit */
    border-radius: 8px;
}


/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;        /* Fixed height for gallery */
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

/* Responsive */
@media(max-width:768px){
    nav .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
    }
}