body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.navbar.fixed-top {
    backdrop-filter: blur(5px);
    background-color: rgba(33, 37, 41, 0.95);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}


.display-4 {
    font-weight: bold;
    margin-top: 1.5rem;
}


.hero {
    background-image: url('https://source.unsplash.com/random/1600x900/?restaurant');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content {
    background-color: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 5px;
}

/* Menu item styling */
.card {
    transition: transform 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer styling */
footer {
    margin-top: 3rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .time-slot {
        width: calc(33.333% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .time-slot {
        width: calc(50% - 0.5rem);
    }
}