/* Navigation */
.navbar {
    background-color: #333;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus {
    background: #f1f1f1;
    color: black;
    outline: none;
}

.nav-list a.active {
    background-color: #008b8b;
    color: white;
}

.reservation-link {
    margin-left: auto;
}

.reservation-link a {
    background-color: #008b8b;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin: 5px;
    transition: all 0.3s ease;
}

.reservation-link a:hover,
.reservation-link a:focus {
    background-color: #006666;
    color: white;
    transform: translateY(-2px);
}

.phone-icon {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        padding: 12px;
        font-size: 18px;
        width: 100%;
    }
    
    .reservation-link {
        margin-left: 0;
        width: 100%;
    }
}