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

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

/* Header & Navigation */
header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header .logo {
    float: left;
    margin-top: -10px;
}

header .logo h1 a {
    font-size: 24px;
}

header nav {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

header nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
}

header nav ul li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
    margin-top: 10px;
}

header nav ul li a:hover {
    color: #0779e4;
    font-weight: bold;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: url('../images/hero_background.jpg') no-repeat center center/cover; /* Placeholder, will need an actual image */
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #0779e4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* Sections */
section {
    padding: 40px 0;
    text-align: center;
}

section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Dish Cards (Featured Dishes, Menu Items) */
.dish-card, .menu-item {
    background: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
    display: inline-block; /* For side-by-side display, can be changed with flex/grid */
    width: calc(33.333% - 30px); /* Adjust for margins */
    vertical-align: top;
    box-sizing: border-box;
}

.dish-card img, .menu-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.dish-card h4, .menu-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0779e4;
}

.dish-card p, .menu-item p {
    font-size: 16px;
    margin-bottom: 10px;
}

.menu-item .price {
    font-size: 18px;
    font-weight: bold;
    color: #e8491d;
    display: block;
    margin-top: 10px;
}

#featured-dishes, #menu-list, #gallery-images, #contact-info, #contact-form {
    padding: 20px;
}

/* Menu Page */
.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    font-size: 28px;
    color: #333;
    border-bottom: 2px solid #0779e4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.gallery-item p {
    font-size: 14px;
    color: #555;
}

/* Contact Page */
#contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

#contact-form form div {
    margin-bottom: 15px;
    text-align: left;
}

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

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form p em {
    font-size: 14px;
    color: #777;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Responsive Design */
@media(max-width: 768px){
    header .logo,
    header nav ul,
    header nav ul li {
        float: none;
        text-align: center;
        width: 100%;
    }

    header nav ul li {
        padding: 10px 0;
    }

    #hero {
        min-height: 300px;
    }

    #hero h2 {
        font-size: 36px;
    }

    #hero p {
        font-size: 18px;
    }

    .dish-card, .menu-item {
        width: calc(50% - 30px); /* Two columns on tablets */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media(max-width: 500px){
    .dish-card, .menu-item {
        width: 100%; /* Single column on mobile */
        margin-left: 0;
        margin-right: 0;
    }

    .container {
        width: 95%;
    }

    #contact-form input[type="text"],
    #contact-form input[type="email"],
    #contact-form input[type="tel"],
    #contact-form textarea {
        width: calc(100% - 22px); /* Adjust for padding and border */
    }
}

