* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 120px;
    z-index: 1500;
    color: white;
    padding: 10px 20px;
    border-bottom: 2px solid rgba(218, 165, 32, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 2, 30, 0.2);
    z-index: 1;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 69, 19, 0.2);
    z-index: 1;
}

.navbar * {
    position: relative;
    z-index: 2;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-item {
    color: #ff8c00;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.social-container {
    display: flex;
    gap: 10px;
}

.social-item {
    color: white;
    font-size: 20px;
    padding: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: scale(1.2);
}

.social-item.facebook:hover { color: #1877F2; }
.social-item.instagram:hover { color: #E4405F; }
.social-item.whatsapp:hover { color: #25D366; }

.main-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    height: 80px;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 0;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: translateY(-5px);
}

.navbar-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-item {
    color: #fceac5;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.navbar-item:hover {
    color: #ffb400;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    border: 1px solid #ffb400;
}

.navbar-item.active {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.restaurant-name {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px rgba(117, 114, 30);
    flex-grow: 1;
    display: flex;
    justify-content: left;
    margin-left: 10px;
}

.menu-icon {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 50%; transform: translateY(-50%) translateX(5px); }
.menu-icon span:nth-child(3) { bottom: 0; transform: translateX(10px); }

.menu-icon.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg) translateX(0);
}

@media (max-width: 1024px) {
    .navbar-item {
        font-size: 14px;
        padding: 6px 10px;
    }
    .logo img {
        height: 70px;
    }
    .restaurant-name {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px;
        min-height: 100px;
    }
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
    .contact-info {
        justify-content: center;
    }
    .social-container {
        justify-content: center;
    }
    .main-bar {
        height: 60px;
    }
    .logo img {
        height: 60px;
    }
    .navbar-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 10px;
        background-color: #333;
        padding: 15px;
        border-radius: 5px;
        z-index: 1000;
        width: 200px;
    }
    .navbar-items.active {
        display: flex;
        animation: slideIn 0.3s ease-in-out;
    }
    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
    .menu-icon {
        display: block;
    }
    .navbar-item {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    .main-bar {
        justify-content: space-between;
    }
    .restaurant-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-height: 90px;
    }
    .logo img {
        height: 50px;
    }
    .contact-item {
        font-size: 12px;
    }
    .social-item {
        font-size: 18px;
    }
    .navbar-items {
        top: 90px;
        width: 150px;
    }
    .navbar-item {
        font-size: 14px;
    }
    .restaurant-name {
        font-size: 18px;
    }
}