body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #000000, #ffffff);
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    background-color: #333;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #ffffff;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img.logo-image {
    width: 200px;
    height: auto;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

header nav ul li:hover {
    background-color: #555;
}

.search-button {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
}

.slider {
    position: relative;
    width: 100%;
    margin: 20px auto;
}

.slider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.menu {
    padding: 20px;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-category h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.contact, .menu {
    text-align: center;
}

#map {
    height: 400px;
    width: 100%;
    background-color: #888;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float a {
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 16px;
}

/* Mobile compatibility */
@media (max-width: 600px) {
    header .logo, header nav {
        float: none;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .search-button {
        margin-top: 10px;
    }

    .hero {
        padding: 20px 10px;
    }

    .menu-category img {
        max-width: 100%;
    }

    .menu, .contact {
        padding: 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-float i {
        margin-top: 12px;
    }
}

