/* styles.css */

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('images/background.jpg'); /* Set background image */
    background-repeat: repeat-x; /* Repeat background image horizontally */
    background-position: center top; /* Center the background image vertically */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff;
    padding: 10px 0;
    text-align: center; /* Center align content */
}

nav {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff;
    padding: 10px 0;
    text-align: center; /* Center align content */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center align items */
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover {
    color: #ddd;
    background-color: #444;
}

h1, h2, h3 {
    margin: 0;
}

main {
    padding: 40px 0;
}

.menu-category {
    margin-bottom: 40px;
    text-align: center;
}

.menu-category h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD600; /* Set title color */
    text-transform: uppercase;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.menu-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.menu-item .menu-item-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
}

.menu-item .menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item h3 {
    font-size: 1.5em;
    margin-top: 10px;
}

.menu-item p {
    margin: 10px 20px;
    font-size: 1em;
    color: #666;
}

.menu-item span {
    display: block;
    margin: 15px 0;
    font-size: 1.2em;
    color: #333;
}

.logo img {
    max-width: 100%; /* Ensure the logo image does not exceed its container */
    height: auto; /* Allow the logo image to scale proportionally */
}

@media (max-width: 600px) {
    .menu-item {
        width: 90%;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        text-align: center;
    }
}
