/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f5f0;
    color: #3a3a3a;
    padding: 20px;
}

/* Modern Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #2c1810;
}

.navbar-brand i {
    color: #6f4e37;
}

.nav-link {
    color: #2c1810 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6f4e37 !important;
}

.nav-link.active {
    color: #6f4e37 !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #6f4e37;
    border-radius: 2px;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #2c1810;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(111, 78, 55, 0.1);
    color: #6f4e37;
}

.dropdown-item.active {
    background-color: #6f4e37;
    color: white;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    color: #2c1810;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    color: #6f4e37;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler i {
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] i {
    transform: rotate(90deg);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link.active::after {
        display: none;
    }
}

/* Back Button */
.back-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #6b4226;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #8c5e3d;
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 40px 0 30px;
}

.section-title h1 {
    color: #6b4226;
    font-size: 2.5rem;
    font-weight: bold;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #a67c52;
    margin: 15px auto;
}

.text-muted {
    color: #777;
}

/* Menu Container */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 50px;
}

/* Menu Card */
.menu-card {
    width: 100%;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-header {
    padding: 20px;
    color: white;
}

.menu-header.breakfast {
    background-color: #a67c52;
}

.menu-header.lunch {
    background-color: #a67c52;
}

.menu-header.dinner {
    background-color: #a67c52;
}

.menu-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.time {
    font-size: 0.9rem;
    opacity: 0.9;
}

.menu-items {
    padding: 20px;
}

.menu-item {
    margin-bottom: 25px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}

.menu-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item h3 {
    color: #6b4226;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.menu-item p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.price {
    color: #a67c52;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2rem;
    }
    
    .menu-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }
    
    .section-title {
        padding: 30px 0 20px;
    }
    
    .menu-container {
        padding: 10px 0 30px;
    }
}